KeyValuePair<TKey,TValue> Struct
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Definisce una coppia chiave/valore che può essere impostata o recuperata.
generic <typename TKey, typename TValue>
public value class KeyValuePair
public struct KeyValuePair<TKey,TValue>
public readonly struct KeyValuePair<TKey,TValue>
[System.Serializable]
public struct KeyValuePair<TKey,TValue>
type KeyValuePair<'Key, 'Value> = struct
[<System.Serializable>]
type KeyValuePair<'Key, 'Value> = struct
Public Structure KeyValuePair(Of TKey, TValue)
Parametri di tipo
- TKey
Tipo di chiave.
- TValue
Tipo di valore.
- Ereditarietà
- Attributi
Esempio
Nell'esempio di codice seguente viene illustrato come enumerare le chiavi e i valori in un dizionario usando la KeyValuePair<TKey,TValue> struttura.
Questo codice fa parte di un esempio più grande fornito per la Dictionary<TKey,TValue> classe.
// When you use foreach to enumerate dictionary elements,
// the elements are retrieved as KeyValuePair objects.
Console::WriteLine();
for each( KeyValuePair<String^, String^> kvp in openWith )
{
Console::WriteLine("Key = {0}, Value = {1}",
kvp.Key, kvp.Value);
}
// 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);
}
' 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
Commenti
La proprietà restituisce un'istanza Dictionary<TKey,TValue>.Enumerator.Current di questo tipo.
L'istruzione foreach
del linguaggio C# (for each
in C++, For Each
in Visual Basic) restituisce un oggetto del tipo degli elementi nell'insieme. Poiché ogni elemento di una raccolta basata su IDictionary<TKey,TValue> è una coppia chiave/valore, il tipo di elemento non è il tipo della chiave o il tipo del valore. Il tipo di elemento è KeyValuePair<TKey,TValue>invece . Ad esempio:
for each(KeyValuePair<String^, String^> kvp in myDictionary)
{
Console::WriteLine("Key = {0}, Value = {1}", kvp.Key, kvp.Value);
}
foreach( KeyValuePair<string, string> kvp in myDictionary )
{
Console.WriteLine("Key = {0}, Value = {1}", kvp.Key, kvp.Value);
}
For Each kvp As KeyValuePair(Of String, String) In myDictionary
Console.WriteLine("Key = {0}, Value = {1}", kvp.Key, kvp.Value)
Next kvp
L'istruzione foreach
è un wrapper intorno all'enumeratore, che consente solo la lettura da, non la scrittura in, la raccolta.
Costruttori
KeyValuePair<TKey,TValue>(TKey, TValue) |
Inizializza una nuova istanza della struttura KeyValuePair<TKey,TValue> con la chiave e il valore specificati. |
Proprietà
Key |
Ottiene la chiave della coppia chiave/valore. |
Value |
Ottiene il valore della coppia chiave/valore. |
Metodi
Deconstruct(TKey, TValue) |
Decostruisce la struttura KeyValuePair<TKey,TValue> corrente. |
ToString() |
Restituisce una rappresentazione di stringa dell'oggetto KeyValuePair<TKey,TValue>, usando le rappresentazioni di stringa della chiave e del valore. |