C# এ SortedDictionary.Add() পদ্ধতিটি SortedDictionary
সিনট্যাক্স
সিনট্যাক্স নিম্নরূপ -
সর্বজনীন অকার্যকর যোগ করুন (TKey কী, TValue val);
উপরে, মান কী যোগ করার জন্য উপাদানের কী, যেখানে val যোগ করার উপাদানটির মান।
উদাহরণ
আসুন এখন একটি উদাহরণ দেখি -
ব্যবহার করে System;using System.Collections;using System.Collections.Generic;public class Demo { public static void Main(){ SortedDictionarysortedDict =new SortedDictionary (); sortedDict.Add(100, "মোবাইল"); sortedDict.Add(200, "ল্যাপটপ"); sortedDict.Add(300, "ডেস্কটপ"); sortedDict.Add(400, "স্পীকার"); sortedDict.Add(500, "হেডফোন"); sortedDict.Add(600, "Earphone"); Console.WriteLine("SortedDictionary key-value জোড়া..."); IDictionaryEnumerator demoEnum =sortedDict.GetEnumerator(); যখন (demoEnum.MoveNext()) Console.WriteLine("Key =" + demoEnum.Key + ", Value =" + demoEnum.Value); }}
আউটপুট
এটি নিম্নলিখিত আউটপুট −
তৈরি করবেSortedDictionary key-value জোড়া...কী =100, মান =MobileKey =200, মান =LaptopKey =300, মান =DesktopKey =400, মান =SpeakersKey =500, মান =HeadphoneKey =600, মান =Earphone প্রাক>উদাহরণ
আসুন আরেকটি উদাহরণ দেখি -
ব্যবহার করে System;using System.Collections;using System.Collections.Generic;public class Demo { public static void Main(){ SortedDictionarysortedDict =new SortedDictionary (); sortedDict.Add("A", "John"); sortedDict.Add("B", "Andy"); sortedDict.Add("C", "Tim"); sortedDict.Add("D", "Ryan"); sortedDict.Add("E", "Kevin"); sortedDict.Add("F", "Katie"); sortedDict.Add("G", "Brad"); Console.WriteLine("SortedDictionary key-value জোড়া..."); IDictionaryEnumerator demoEnum =sortedDict.GetEnumerator(); যখন (demoEnum.MoveNext()) Console.WriteLine("Key =" + demoEnum.Key + ", Value =" + demoEnum.Value); Console.WriteLine("\nSortedDictionary এ কী F আছে? ="+sortedDict.ContainsKey("F")); }} আউটপুট
এটি নিম্নলিখিত আউটপুট −
তৈরি করবেবাছাই করা অভিধান কী-মান জোড়া...কী =A, মান =JohnKey =B, মান =AndyKey =C, মান =TimKey =D, মান =RyanKey =E, মান =KevinKey =F, মান =KatieKey =G , মান =BradThe Sorted Dictionary তে কী F আছে? =সত্য