Namespace:
System.Collections.Generic
Assembly:
mscorlib (in mscorlib.dll)
Visual Basic (Declaration)
Public ReadOnly Property Values As Dictionary<(Of <(TKey, TValue>)>)..::.ValueCollection
Dim instance As Dictionary
Dim value As Dictionary<(Of <(TKey, TValue>)>)..::.ValueCollection
value = instance.Values
public Dictionary<(Of <(TKey, TValue>)>)..::.ValueCollection Values { get; }
public:
property Dictionary<(Of <(TKey, TValue>)>)..::.ValueCollection^ Values {
Dictionary<(Of <(TKey, TValue>)>)..::.ValueCollection^ get ();
}
public function get Values () : Dictionary<(Of <(TKey, TValue>)>)..::.ValueCollection
The order of the values in the Dictionary<(Of <(TKey, TValue>)>)..::.ValueCollection is unspecified, but it is the same order as the associated keys in the Dictionary<(Of <(TKey, TValue>)>)..::.KeyCollection returned by the Keys property.
The returned Dictionary<(Of <(TKey, TValue>)>)..::.ValueCollection is not a static copy; instead, the Dictionary<(Of <(TKey, TValue>)>)..::.ValueCollection refers back to the values in the original Dictionary<(Of <(TKey, TValue>)>). Therefore, changes to the Dictionary<(Of <(TKey, TValue>)>) continue to be reflected in the Dictionary<(Of <(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 Dictionary<(Of <(TKey, TValue>)>) class.
' To get the values alone, use the Values property.
Dim valueColl As _
Dictionary(Of String, String).ValueCollection = _
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 valueColl
Console.WriteLine("Value = {0}", s)
Next s
...
' When you use foreach to enumerate dictionary elements,
' the elements are retrieved as KeyValuePair objects.
Console.WriteLine()
For Each kvp As KeyValuePair(Of String, String) In openWith
Console.WriteLine("Key = {0}, Value = {1}", _
kvp.Key, kvp.Value)
Next kvp
// To get the values alone, use the Values property.
Dictionary<string, string>.ValueCollection valueColl =
openWith.Values;
// The elements of the ValueCollection are strongly typed
// with the type that was specified for dictionary values.
Console.WriteLine();
foreach( string s in valueColl )
{
Console.WriteLine("Value = {0}", s);
}
...
// When you use foreach to enumerate dictionary elements,
// the elements are retrieved as KeyValuePair objects.
Console.WriteLine();
foreach( KeyValuePair<string, string> kvp in openWith )
{
Console.WriteLine("Key = {0}, Value = {1}",
kvp.Key, kvp.Value);
}
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC, Xbox 360, Zune
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
.NET Framework
Supported in: 3.5, 3.0, 2.0
.NET Compact Framework
Supported in: 3.5, 2.0
XNA Framework
Supported in: 3.0, 2.0, 1.0
Reference