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