SortedList<TKey, TValue>::IDictionary::Values Property
Gets an ICollection containing the values in the IDictionary.
Assembly: System (in System.dll)
private: property ICollection^ Values { virtual ICollection^ get() sealed = IDictionary::Values::get; }
Property Value
Type: System.Collections::ICollection^An ICollection containing the values in the IDictionary.
Implements
IDictionary::ValuesThe order of the values in the ICollection is the same as the order in the SortedList<TKey, TValue>.
Retrieving the value of this property is an O(1) operation.
The following code example shows how to use the IDictionary::Values property of the System.Collections::IDictionary interface with a SortedList<TKey, TValue>, to list the values in the sorted list. The example also shows how to enumerate the key/value pairs in the sorted list; note that the enumerator for the System.Collections::IDictionary interface returns DictionaryEntry objects rather than KeyValuePair<TKey, TValue> objects.
The code example is part of a larger example, including output, provided for the IDictionary::Add method.
Available since 10
.NET Framework
Available since 2.0