SortedDictionary<TKey, TValue>::Values Property

 

Gets a collection containing the values in the SortedDictionary<TKey, TValue>.

Namespace:   System.Collections.Generic
Assembly:  System (in System.dll)

public:
property SortedDictionary<TKey, TValue>::ValueCollection^ Values {
	SortedDictionary<TKey, TValue>::ValueCollection^ get();
}

The values in the SortedDictionary<TKey, TValue>::ValueCollection are sorted according to the Comparer property, and are in the same order as the associated keys in the SortedDictionary<TKey, TValue>::KeyCollection returned by the Keys property.

The returned SortedDictionary<TKey, TValue>::ValueCollection is not a static copy; instead, the SortedDictionary<TKey, TValue>::ValueCollection refers back to the values in the original SortedDictionary<TKey, TValue>. Therefore, changes to the SortedDictionary<TKey, TValue> continue to be reflected in the SortedDictionary<TKey, TValue>::ValueCollection.

Getting the value of this property is an O(1) operation.

This code example shows how to enumerate the values in the dictionary using the Values property, and how to enumerate the keys and values in the dictionary.

This code example is part of a larger example provided for the SortedDictionary<TKey, TValue> class.

No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.

Universal Windows Platform
Available since 8
.NET Framework
Available since 2.0
Portable Class Library
Supported in: portable .NET platforms
Windows Phone Silverlight
Available since 8.0
Windows Phone
Available since 8.1
Return to top
Show: