Click or drag to resize
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.Collections
Assembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntax
protected override sealed bool TryEnumerateValuesForKey(
	TKey key,
	out IEnumerator<TValue> values
)

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: Boolean
True if the dictionary contains key. False if the dictionary does not contain key.
See Also