SortedDictionary<TKey, TValue>::Values Property
Gets a collection containing the values in the SortedDictionary<TKey, TValue>.
Assembly: System (in System.dll)
public: property SortedDictionary<TKey, TValue>::ValueCollection^ Values { SortedDictionary<TKey, TValue>::ValueCollection^ get(); }
Property Value
Type: System.Collections.Generic::SortedDictionary<TKey, TValue>::ValueCollection^A SortedDictionary<TKey, TValue>::ValueCollection containing the values in the SortedDictionary<TKey, TValue>.
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.
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