var dict = new Dictionary<string, int> { { "one", 1 }, { "two", 2 }, { "three", 3 } };
#With C#6 var dict = new Dictionary<string, int> { ["one"] = 1, ["two"] = 2, ["three"] = 3 };