Dictionary<TKey, TValue>.IDictionary<TKey, TValue>.Values Property
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Gets an ICollection<T> containing the values in the IDictionary<TKey, TValue>.
Assembly: mscorlib (in mscorlib.dll)
Property Value
Type: System.Collections.Generic.ICollection<TValue>An ICollection<T> of type TValue containing the values in the IDictionary<TKey, TValue>.
Implements
IDictionary<TKey, TValue>.ValuesThe order of the values in the returned ICollection<T> is unspecified, but it is guaranteed to be the same order as the corresponding keys in the ICollection<T> returned by the Keys property.
Getting the value of this property is an O(1) operation.
Show: