KeyValuePair(Of TKey, TValue).Value Property
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Gets the value in the key/value pair.
Assembly: mscorlib (in mscorlib.dll)
The following code example shows how to enumerate the keys and values in a dictionary, using the KeyValuePair(Of TKey, TValue) structure.
This code is part of a larger example provided for the Dictionary(Of TKey, TValue) class.
' When you use foreach to enumerate dictionary elements, ' the elements are retrieved as KeyValuePair objects. outputBlock.Text &= vbCrLf For Each kvp As KeyValuePair(Of String, String) In openWith outputBlock.Text &= String.Format("Key = {0}, Value = {1}", _ kvp.Key, kvp.Value) & vbCrLf Next kvp
Show: