KeyValuePair クラスは C# を使用して、値のペアを 1 つのリストに格納します。
KeyValuePair を設定して要素を追加する -
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));
KeyValuePair を使用してキーと値を表示する方法を学習するコードは次のとおりです -
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); } } }
以上がC# のキーと値のペアの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。