(&q"/> (&q">
Heim > Artikel > Backend-Entwicklung > Schlüssel-Wert-Paare in C#
Die
KeyValuePair-Klasse speichert mithilfe von C# ein Wertepaar in einer einzelnen Liste.
KeyValuePair festlegen und Elemente hinzufügen -
var myList = new List<KeyValuePair<string, int>>(); // adding elements myList.Add(new KeyValuePair<string, int>("Laptop", 20)); myList.Add(new KeyValuePair<string, int>("Desktop", 40)); myList.Add(new KeyValuePair<string, int>("Tablet", 60));
Hier ist der Code, um zu lernen, wie man KeyValuePair verwendet und Schlüssel und Werte anzeigt -
Using System; using System.Collections.Generic; class Program { static void Main() { var myList = new List<KeyValuePair<string, int>>(); // adding elements myList.Add(new KeyValuePair<string, int>("Laptop", 20)); myList.Add(new KeyValuePair<string, int>("Desktop", 40)); myList.Add(new KeyValuePair<string, int>("Tablet", 60)); foreach (var val in myList) { Console.WriteLine(val); } } }
Das obige ist der detaillierte Inhalt vonSchlüssel-Wert-Paare in C#. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!