using System.Collections.Generic;
public class DictionaryExample
public static void Main(string[] args)
SortedDictionary<string, string> names = new SortedDictionary<string, string>();
Console.WriteLine(names["3"]);
foreach (KeyValuePair<string, string> kv in names)
Console.WriteLine(kv.Key+" "+kv.Value);