প্রথমত, উপাদান সহ একটি অভিধান সংগ্রহ সেট করুন।
Dictionary<int, string> d = new Dictionary<int, string>() { {1,"Applianes"}, {2, "Clothing"}, {3,"Toys"}, {4,"Footwear"}, {5, "Accessories"} };
এখন, ধরুন আপনাকে কী 5 বিদ্যমান কিনা তা পরীক্ষা করতে হবে। এর জন্য, ContainsKey() পদ্ধতি ব্যবহার করুন। চাবি পাওয়া গেলে এটি সত্য ফেরত দেয়।
d.ContainsKey(5);
আসুন আমরা সম্পূর্ণ কোড দেখি।
উদাহরণ
using System; using System.Collections.Generic; public class Program { public static void Main() { Dictionary<int, string> d = new Dictionary<int, string>() { {1,"Electronics"}, {2, "Clothing"}, {3,"Toys"}, {4,"Footwear"}, {5, "Accessories"} }; foreach (KeyValuePair<int, string> ele in d) { Console.WriteLine("Key = {0}, Value = {1}", ele.Key, ele.Value); } Console.WriteLine("Key 5 exists? "+d.ContainsKey(5)); } }
আউটপুট
Key = 1, Value = Electronics Key = 2, Value = Clothing Key = 3, Value = Toys Key = 4, Value = Footwear Key = 5, Value = Accessories Key 5 exists? True