C#
 Computer >> コンピューター >  >> プログラミング >> C#

C#ディクショナリにキーと値のペアを追加する


C#ディクショナリにキーと値のペアを追加するには、最初にディクショナリを宣言します。

IDictionary<int, string> d = new Dictionary<int, string>();

次に、KeyValuePairを使用して要素を追加します。

d.Add(new KeyValuePair<int, string>(1, "TVs"));
d.Add(new KeyValuePair<int, string>(2, "Appliances"));
d.Add(new KeyValuePair<int, string>(3, "Mobile"));

要素を追加したら、キーと値のペアを表示しましょう。

using System;
using System.Collections.Generic;
public class Demo {
   public static void Main() {
      IDictionary<int, string> d = new Dictionary<int, string>();
      d.Add(new KeyValuePair<int, string>(1, "TVs"));
      d.Add(new KeyValuePair<int, string>(2, "Appliances"));
      d.Add(new KeyValuePair<int, string>(3, "Mobile"));
      d.Add(new KeyValuePair<int, string>(4, "Tablet"));
      d.Add(new KeyValuePair<int, string>(5, "Laptop"));
      d.Add(new KeyValuePair<int, string>(6, "Desktop"));
      d.Add(new KeyValuePair<int, string>(7, "Hard Drive"));
      d.Add(new KeyValuePair<int, string>(8, "Flash Drive"));
      foreach (KeyValuePair<int, string> ele in d) {
         Console.WriteLine("Key = {0}, Value = {1}", ele.Key, ele.Value);
      }
   }
}

出力

Key = 1, Value = TVs
Key = 2, Value = Appliances
Key = 3, Value = Mobile
Key = 4, Value = Tablet
Key = 5, Value = Laptop
Key = 6, Value = Desktop
Key = 7, Value = Hard Drive
Key = 8, Value = Flash Drive

  1. Windows10で辞書に単語を追加または削除する方法

    Windows 10は、スペルミスを非常に簡単に検出し、適切な修正を提案できます。これは非常に便利な機能です。ただし、Windowsは、スペルミスではないが、通常の英語の単語や、名前や略語など、システムで使用されている言語とは異なる単語を強調表示する場合があります。その場合は、それらの単語を簡単に追加できます。 Windows10辞書に。この記事ではその方法を説明します。 辞書に単語を追加 Windows10辞書に単語を追加する方法は2つあります。最初の方法は、組み込みのWindows10スペルチェック機能を利用します。 2番目の方法では、システム内にある辞書ファイルに選択した単語を直接追加

  2. Pythonで辞書に新しいキーを追加するにはどうすればよいですか?

    辞書は、キーと値のペアの順序付けられていないコレクションです。各要素は、位置インデックスによって識別されません。さらに、キーを繰り返すことができないという事実から、新しいキーを使用してそれに値を割り当てるだけで、新しいペアが辞書に追加されます。 >>> D1 = {1: a, 2: b, 3: c, x: 1, y: 2, z: 3} >>> D1[10] = z >>> D1 {1: a, 2: b, 3: c, x: 1, y: 2, z: 3, 10: z}