59.SortedList in C#
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Collections; namespace sortedlist { class Program { static void Main(string[] args) { SortedList s1 = new SortedList(); s1.Add("key1", 50); s1.Add("key2", 60); s1.Add("key3", 70); s1.Add("key4", 80); s1.Add("key5", 90); foreach (DictionaryEntry sname in s1) { Console.WriteLine("Key : " + sname.Key + " And Values : " + sname.Value); } ...