IDictionary.Values Property
.NET Framework 2.0
Gets an ICollection containing the values in the IDictionary.
Namespace: System.Collections.Generic
Assembly: mscorlib (in mscorlib.dll)
Assembly: mscorlib (in mscorlib.dll)
'Declaration ReadOnly Property Values As ICollection(Of TValue) 'Usage Dim instance As IDictionary(Of TKey, TValue) Dim value As ICollection(Of TValue) value = instance.Values
/** @property */ ICollection<TValue> get_Values ()
function get Values () : ICollection<TValue>
Not applicable.
Property Value
An ICollection containing the values in the object that implements IDictionary.The order of the values in the returned ICollection is unspecified, but it is guaranteed to be the same order as the corresponding keys in the ICollection returned by the Keys property.
The following code example shows how to enumerate values alone using the Values property.
This code is part of a larger example that can be compiled and executed. See System.Collections.Generic.IDictionary.
' To get the values alone, use the Values property. Dim icoll As ICollection(Of String) = openWith.Values ' The elements of the ValueCollection are strongly typed ' with the type that was specified for dictionary values. Console.WriteLine() For Each s As String In icoll Console.WriteLine("Value = {0}", s) Next s
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: