Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

C # SortedDictionary.Add () วิธีการ


วิธี SortedDictionary.Add() ใน C# ถูกใช้เพื่อเพิ่มองค์ประกอบด้วยคีย์ที่ระบุและค่าลงใน SortedDictionary.

ไวยากรณ์

ไวยากรณ์มีดังนี้ −

โมฆะสาธารณะ เพิ่ม (คีย์ TKey, TValue val);

ด้านบน คีย์ค่าคือคีย์ขององค์ประกอบที่จะเพิ่ม ในขณะที่ val คือค่าขององค์ประกอบที่จะเพิ่ม

ตัวอย่าง

เรามาดูตัวอย่างกัน −

ใช้ System; ใช้ System.Collections; ใช้ System.Collections.Generic; การสาธิตคลาสสาธารณะ { โมฆะสาธารณะแบบคงที่ Main () { SortedDictionary  sortedDict =ใหม่ SortedDictionary  (); sortedDict.Add(100, "มือถือ"); sortedDict.Add(200, "แล็ปท็อป"); sortedDict.Add(300, "เดสก์ท็อป"); sortedDict.Add(400, "ลำโพง"); sortedDict.Add(500, "หูฟัง"); sortedDict.Add(600, "หูฟัง"); Console.WriteLine("SortedDictionary คู่คีย์-ค่า..."); IDictionaryEnumerator demoEnum =sortedDict.GetEnumerator (); ในขณะที่ (demoEnum.MoveNext()) Console.WriteLine("Key =" + demoEnum.Key + ", Value =" + demoEnum.Value); }}

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

SortedDictionary คู่คีย์-ค่า...คีย์ =100, ค่า =MobileKey =200, ค่า =LaptopKey =300, ค่า =DesktopKey =400, ค่า =SpeakersKey =500, ค่า =HeadphoneKey =600, ค่า =หูฟัง 

ตัวอย่าง

เรามาดูตัวอย่างกัน −

ใช้ System; ใช้ System.Collections; ใช้ System.Collections.Generic; การสาธิตคลาสสาธารณะ { โมฆะสาธารณะแบบคงที่ Main () { SortedDictionary  sortedDict =ใหม่ SortedDictionary(); sortedDict.Add("A", "จอห์น"); sortedDict.Add("B", "แอนดี้"); sortedDict.Add("C", "ทิม"); sortedDict.Add("D", "ไรอัน"); sortedDict.Add("E", "เควิน"); sortedDict.Add("F", "เคธี่"); sortedDict.Add("G", "แบรด"); Console.WriteLine("SortedDictionary คู่คีย์-ค่า..."); IDictionaryEnumerator demoEnum =sortedDict.GetEnumerator (); ในขณะที่ (demoEnum.MoveNext()) Console.WriteLine("Key =" + demoEnum.Key + ", Value =" + demoEnum.Value); Console.WriteLine("\nThe SortedDictionary มีคีย์ F? ="+sortedDict.ContainsKey("F")); }}

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

SortedDictionary คู่คีย์-ค่า...คีย์ =A ค่า =JohnKey =B ค่า =AndyKey =C ค่า =TimKey =D ค่า =RyanKey =E ค่า =KevinKey =F ค่า =KatieKey =G , Value =BradThe SortedDictionary มีคีย์ F? =จริง