Click or drag to resize
MultiDictionaryBaseTKey, TValueItem Property
Returns a collection of all of the values in the dictionary associated with key, or changes the set of values associated with key. If the key is not present in the dictionary, an ICollection enumerating no values is returned. The returned collection of values is read-write, and can be used to modify the collection of values associated with the key.

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; set; }

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