using System.Collections;
static public void Main()
SortedList elSL1 = new SortedList();
Console.WriteLine("FIRST NON GENERIC SORTEDLIST");
foreach (DictionaryEntry el in elSL1)
Console.WriteLine("{0} >> {1}", el.Key, el.Value);
var elSL2 = new SortedList() {
Console.WriteLine("SECOND NON GENERIC SORTEDLIST");
foreach (DictionaryEntry el in elSL2)
Console.WriteLine("{0} >> {1}", el.Key, el.Value);