সর্টেড ডিকশনারির মাধ্যমে পুনরাবৃত্তি করে এমন একটি গণনাকারী পেতে, কোডটি নিম্নরূপ -
উদাহরণ
ব্যবহার করে 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.Collections;using System.Collections.Generic;পাবলিক ক্লাস ডেমো { পাবলিক স্ট্যাটিক ভ্যাইড মেইন(){ SortedDictionarysortedDict =নতুন SortedDictionary (); sortedDict.Add(100, 1); sortedDict.Add(200, 2); sortedDict.Add(300, 3); sortedDict.Add(400, 4); sortedDict.Add(500, 5); sortedDict.Add(600, 6); sortedDict.Add(700, 7); sortedDict.Add(800, 8); sortedDict.Add(900, 9); sortedDict.Add(1000, 10); Console.WriteLine("SortedDictionary key-value জোড়া..."); IDictionaryEnumerator demoEnum =sortedDict.GetEnumerator(); যখন (demoEnum.MoveNext()) Console.WriteLine("Key =" + demoEnum.Key + ", Value =" + demoEnum.Value); } } আউটপুট
এটি নিম্নলিখিত আউটপুট −
তৈরি করবেবাছাই করা অভিধান কী-মান জোড়া...কী =100, মান =1 কী =200, মান =2 কী =300, মান =3 কী =400, মান =4 কী =500, মান =5 কী =600, মান =00 =7 , মান =7 কী =800, মান =8 কী =900, মান =9 কী =1000, মান =10