Method TryGetValue
- Namespace
- GuildWars2.Collections
- Assembly
- GuildWars2.dll
TryGetValue(T, out T)
Searches the set for a given value and returns the equal value it finds, if any.
public bool TryGetValue(T equalValue, out T actualValue)
Parameters
equalValueTThe value to search for.
actualValueTThe value from the set that the search found, or the original value if the search yielded no match.
Returns
- bool
trueif the search was successful; otherwise,false.