Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

SortedDictionary<TKey, TValue>::IDictionary::Values Property

 

Gets an ICollection containing the values in the IDictionary.

Namespace:   System.Collections.Generic
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.

The values in the returned ICollection are sorted according to the Comparer property, and are guaranteed to be in the same order as the corresponding keys in the ICollection returned by the Keys property.

Getting 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 SortedDictionary<TKey, TValue>, to list the values in the dictionary. The example also shows how to enumerate the key/value pairs in the dictionary; 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.

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.
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:
© 2017 Microsoft