C# এর অভিধান কী এবং মানগুলির একটি সংগ্রহ। এটি System.Collection.Generics namespace-এ একটি জেনেরিক কালেকশন ক্লাস।
সিনট্যাক্স
নিচের সিনট্যাক্স −
public class Dictionary<TKey,TValue>
উপরে, কী প্যারামিটার হল অভিধানে কীগুলির ধরন, যেখানে TValue হল মানগুলির ধরন৷
উদাহরণ
আসুন এখন একটি অভিধান তৈরি করি এবং কিছু উপাদান যোগ করি -
using System; using System.Collections.Generic; public class Demo { public static void Main(){ Dictionary<string, string> dict = new Dictionary<string, string>(); dict.Add("One", "John"); dict.Add("Two", "Tom"); dict.Add("Three", "Jacob"); dict.Add("Four", "Kevin"); dict.Add("Five", "Nathan"); Console.WriteLine("Key/value pairs..."); foreach(KeyValuePair<string, string> res in dict){ Console.WriteLine("Key = {0}, Value = {1}", res.Key, res.Value); } } }
আউটপুট
এটি নিম্নলিখিত আউটপুট −
তৈরি করবেKey/value pairs... Key = One, Value = John Key = Two, Value = Tom Key = Three, Value = Jacob Key = Four, Value = Kevin Key = Five, Value = Nathan
উদাহরণ
এখন, আসুন একটি উদাহরণ দেখি এবং কিছু কী অপসারণ করি -
using System; using System.Collections.Generic; public class Demo { public static void Main(){ Dictionary<string, string> dict = new Dictionary<string, string>(); dict.Add("One", "Kagido"); dict.Add("Two", "Ngidi"); dict.Add("Three", "Devillers"); dict.Add("Four", "Smith"); dict.Add("Five", "Warner"); Console.WriteLine("Count of elements = "+dict.Count); Console.WriteLine("Removing some keys..."); dict.Remove("Four"); dict.Remove("Five"); Console.WriteLine("Count of elements (updated) = "+dict.Count); Console.WriteLine("\nKey/value pairs..."); foreach(KeyValuePair<string, string> res in dict){ Console.WriteLine("Key = {0}, Value = {1}", res.Key, res.Value); } Console.Write("\nAll the keys..\n"); Dictionary<string, string>.KeyCollection allKeys = dict.Keys; foreach(string str in allKeys){ Console.WriteLine("Key = {0}", str); } } }
আউটপুট
এটি নিম্নলিখিত আউটপুট −
তৈরি করবেCount of elements = 5 Removing some keys... Count of elements (updated) = 3 Key/value pairs... Key = One, Value = Kagido Key = Two, Value = Ngidi Key = Three, Value = Devillers All the keys.. Key = One Key = Two Key = Three