HashSet<T>.AlternateLookup<TAlternate>.TryGetValue Method

Definition

Searches the set for a given value and returns the equal value it finds, if any.

public:
 bool TryGetValue(TAlternate equalValue, [Runtime::InteropServices::Out] T % actualValue);
public bool TryGetValue (TAlternate equalValue, out T actualValue);
member this.TryGetValue : 'Alternate * 'T -> bool
Public Function TryGetValue (equalValue As TAlternate, ByRef actualValue As T) As Boolean

Parameters

equalValue
TAlternate

The value to search for.

actualValue
T

When this method returns, contains the value from the set that the search found, or the default value of T if the search yielded no match.

Returns

true if the search was successful; otherwise, false.

Applies to