IDictionary.Values Property
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Gets an ICollection object containing the values in the IDictionary object.
Assembly: mscorlib (in mscorlib.dll)
Property Value
Type: System.Collections.ICollectionAn ICollection object containing the values in the IDictionary object.
The order of the values in the returned ICollection object is unspecified, but is guaranteed to be the same order as the corresponding keys in the ICollection returned by the Keys property.
The following code example demonstrates how to implement the Values property. This code example is part of a larger example provided for the IDictionary class.