স্ট্রিংডিকশনারিতে নির্দিষ্ট কী-এর সাথে যুক্ত মান পেতে বা সেট করতে, কোডটি নিম্নরূপ -
উদাহরণ
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