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

C#のStringDictionaryで指定されたキーに関連付けられた値を取得または設定します


StringDictionaryで指定されたキーに関連付けられた値を取得または設定するには、コードは次のとおりです-

using System;
using System.Collections.Specialized;
public class Demo {
   public static void Main() {
      StringDictionary strDict = new StringDictionary ();
      strDict.Add("A", "Books");
      strDict.Add("B", "Electronics");
      strDict.Add("C", "Appliances");
      strDict.Add("D", "Pet Supplies");
      strDict.Add("E", "Clothing");
      strDict.Add("F", "Footwear");
      Console.WriteLine("Value associated with key D = "+strDict["D"]);
      Console.WriteLine("Value associated with key F = "+strDict["F"]);
   }
}

出力

これにより、次の出力が生成されます-

Value associated with key D = Pet Supplies
Value associated with key F = Footwear

別の例を見てみましょう-

using System;
using System.Collections.Specialized;
public class Demo {
   public static void Main() {
      StringDictionary strDict = new StringDictionary ();
      strDict.Add("A", "Books");
      strDict.Add("B", "Electronics");
      strDict.Add("C", "Appliances");
      strDict.Add("D", "Pet Supplies");
      strDict.Add("E", "Clothing");
      strDict.Add("F", "Footwear");
      Console.WriteLine("Value associated with key D = "+strDict["D"]);
      Console.WriteLine("Value associated with key F = "+strDict["F"]);
      strDict["F"] = "HDD";
      Console.WriteLine("Value associated with key F (UPDATED) = "+strDict["F"]);
   }
}

出力

これにより、次の出力が生成されます-

Value associated with key D = Pet Supplies
Value associated with key F = Footwear
Value associated with key F (UPDATED) = HDD

  1. C#のListDictionaryで指定されたキーに関連付けられた値を取得または設定します

    ListDictionaryで指定されたキーに関連付けられた値を取得または設定するには、コードは次のとおりです- 例 using System; using System.Collections; using System.Collections.Specialized; public class Demo {    public static void Main() {       ListDictionary dict = new ListDictionary();       dict.Add("A

  2. C#のStringDictionaryでキーのコレクションを取得します

    StringDictionaryでキーのコレクションを取得するには、コードは次のとおりです- 例 using System; using System.Collections; using System.Collections.Specialized; public class Demo {    public static void Main(){       StringDictionary strDict1 = new StringDictionary();       strDict1.Add("