using System.Collections.Generic;
public static void Main()
Dictionary<string, string> myDtStrStr = new Dictionary<string, string>();
myDtStrStr.Add("FirstName", "John");
myDtStrStr.Add("LastName", "Sydney");
myDtStrStr.Add("Address", "Sydney");
foreach(KeyValuePair<string, string> item in myDtStrStr)
Console.WriteLine("Key: "+item.Key+"\tValue: "+item.Value);