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.CollectionsAssembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntaxpublic virtual ICollection<TValue> this[
TKey key
] { get; set; }
public:
virtual property ICollection<TValue>^ default[TKey key] {
ICollection<TValue>^ get (TKey key);
void set (TKey key, ICollection<TValue>^ value);
}
Parameters
- key
- Type: TKey
The key to get the values associated with.
Property Value
Type:
ICollectionTValueAn ICollection<TValue> with all the values associated with
key.
See Also