using System.Collections.Generic;
public static void Main()
Dictionary<string, int> wordncount = new Dictionary<string, int>();
wordncount.Add("this", 1);
wordncount.Add("name", 4);
foreach (KeyValuePair<string, int> KVP in wordncount)
Console.WriteLine("key: {0} num: {1}", KVP.Key, KVP.Value);
Console.WriteLine("value {0}",wordncount["khan"]);