Value Property
Collapse the table of content
Expand the table of content

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.

Namespace:  System.Collections.Generic
Assembly:  mscorlib (in mscorlib.dll)

'Declaration
Public ReadOnly Property Value As TValue

Property Value

Type: TValue
A TValue that is the value of the KeyValuePair(Of TKey, TValue).

This property is read/only.

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


Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Windows Phone

Show:
© 2017 Microsoft