using System;
using System.Collections;
public class Program
{
public static void Main()
SortedList sl = new SortedList();
sl.Add("k","KitKat");
sl.Add("C","Chips");
sl.Add("Cb","Cucumber");
foreach (DictionaryEntry de in sl)
Console.WriteLine(de.Key + " " + de.Value);
}
Console.WriteLine();
Console.WriteLine(sl.Count);
Console.WriteLine(sl.Capacity);