হাইব্রিড ডিকশনারিতে নির্দিষ্ট কী দিয়ে মান পেতে বা সেট করতে, কোডটি নিম্নরূপ -
উদাহরণ
using System; using System.Collections.Specialized; public class Demo { public static void Main() { HybridDictionary myDict = new HybridDictionary(); myDict.Add("1", "Tablet"); myDict.Add("2", "Desktop"); myDict.Add("3", "Speakers"); myDict.Add("4", "Laptop"); myDict.Add("5", "Notebook"); myDict.Add("6", "Ultrabook"); myDict.Add("7", "HDD"); myDict.Add("8", "SDD"); Console.WriteLine("Value at key 5 = "+myDict["5"]); } }
আউটপুট
এটি নিম্নলিখিত আউটপুট −
তৈরি করবেValue at key 5 = Notebook
উদাহরণ
আসুন আরেকটি উদাহরণ দেখি -
using System; using System.Collections.Specialized; public class Demo { public static void Main() { HybridDictionary myDict = new HybridDictionary(); myDict.Add("1", "Tablet"); myDict.Add("2", "Desktop"); myDict.Add("3", "Speakers"); myDict.Add("4", "Laptop"); myDict.Add("5", "Notebook"); myDict.Add("6", "Ultrabook"); myDict.Add("7", "HDD"); myDict.Add("8", "SDD"); Console.WriteLine("Value at key 5 = "+myDict["5"]); myDict["5"] = "Smart Watches"; Console.WriteLine("Value at key 5 [UPDATED] = "+myDict["5"]); } }
আউটপুট
এটি নিম্নলিখিত আউটপুট −
তৈরি করবেValue at key 5 = Notebook Value at key 5 [UPDATED] = Smart Watches
উদাহরণ
আসুন আরেকটি উদাহরণ দেখি -
using System; using System.Collections; public class Demo { public static void Main() { Queue queue = new Queue(); queue.Enqueue(100); queue.Enqueue(200); queue.Enqueue(300); queue.Enqueue(400); queue.Enqueue(500); Console.WriteLine("Queue..."); foreach(Object ob in queue) { Console.WriteLine(ob); } Console.WriteLine("Count of elements = "+queue.Count); Console.WriteLine("Synchronize access..."); lock(queue.SyncRoot) { foreach(Object ob in queue) { Console.WriteLine(ob); } } } }
আউটপুট
এটি নিম্নলিখিত আউটপুট −
তৈরি করবেQueue... 100 200 300 400 500 Count of elements = 5 Synchronize access... 100 200 300 400 500