Method TryGetValues
TryGetValues(TAlternateKey, out ValueSet)
Gets the value set for the specified alternate key or null if the key was not found.
Declaration
public bool TryGetValues(TAlternateKey key, out HashSetDictionary<TKey, TValue>.ValueSet valueSet)
Parameters
Type | Name | Description |
---|---|---|
TAlternateKey | key | |
HashSetDictionary<TKey, TValue>.ValueSet | valueSet |
Returns
Type | Description |
---|---|
bool | A value indicating whether the key was found. |
TryGetValues(TAlternateKey, out TKey, out ValueSet)
Gets the value set for the specified alternate key or null if the key was not found.
Declaration
public bool TryGetValues(TAlternateKey key, out TKey actualKey, out HashSetDictionary<TKey, TValue>.ValueSet valueSet)
Parameters
Type | Name | Description |
---|---|---|
TAlternateKey | key | |
TKey | actualKey | |
HashSetDictionary<TKey, TValue>.ValueSet | valueSet |
Returns
Type | Description |
---|---|
bool | A value indicating whether the key was found. |