MultiDictionaryTKey, TValueTryEnumerateValuesForKey Method |
Determines if this dictionary contains a key equal to key. If so, all the values
associated with that key are returned through the values parameter.
Namespace: X3Platform.CollectionsAssembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntaxprotected override sealed bool TryEnumerateValuesForKey(
TKey key,
out IEnumerator<TValue> values
)
protected:
virtual bool TryEnumerateValuesForKey(
TKey key,
[OutAttribute] IEnumerator<TValue>^% values
) override sealed
Parameters
- key
- Type: TKey
The key to search for. - values
- Type: System.Collections.GenericIEnumeratorTValue
Returns all values associated with key, if true was returned.
Return Value
Type:
BooleanTrue if the dictionary contains key. False if the dictionary does not contain key.
See Also