Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

รับหรือตั้งค่าที่เกี่ยวข้องกับคีย์ที่ระบุใน StringDictionary ใน C #


ในการรับหรือตั้งค่าที่เกี่ยวข้องกับคีย์ที่ระบุใน 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