SortedDictionary(Of TKey, TValue).IDictionary(Of TKey, TValue).Values Property
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Gets an ICollection(Of T) containing the values in the IDictionary(Of TKey, TValue).
Assembly: System (in System.dll)
'Declaration Private ReadOnly Property Values As ICollection(Of TValue) Implements IDictionary(Of TKey, TValue).Values
Property Value
Type: System.Collections.Generic.ICollection(Of TValue)An ICollection(Of T) containing the values in the IDictionary(Of TKey, TValue).
Implements
IDictionary(Of TKey, TValue).ValuesThe values in the returned ICollection(Of T) are sorted according to the Comparer property and are guaranteed to be in the same order as the corresponding keys in the ICollection(Of T) returned by the Keys property.
Getting the value of this property is an O(1) operation.
Show: