Click or drag to resize
ReadOnlyMultiDictionaryBaseTKey, TValueItem Property
Returns a collection of all of the values in the dictionary associated with key. If the key is not present in the dictionary, an ICollection with no values is returned. The returned ICollection is read-only.

Namespace: X3Platform.Collections
Assembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntax
public virtual ICollection<TValue> this[
	TKey key
] { get; }

Parameters

key
Type: TKey
The key to get the values associated with.

Property Value

Type: ICollectionTValue
An ICollection<TValue> with all the values associated with key.
See Also