//Create an initialize Dictionary Dictionary dict = new Dictionary() { { "Hello", "World" }, { "Key", "Value" } }; //Create Dictionary and add some Key-Value pairs. Dictionary dict2 = new Dictionary(); dict2.Add("Hello", "World"); dict2.Add("Key", "Value");