Dictionaries initialization in C#

//Empty dictionary
var d1 = new Dictionary<intString>();

//init with some data
var d2 = new Dictionary<intString> {{1, "one"}, {2, "two"}};