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.CollectionsAssembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntaxpublic virtual ICollection<TValue> this[
TKey key
] { get; }
public:
virtual property ICollection<TValue>^ default[TKey key] {
ICollection<TValue>^ get (TKey key);
}
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