Initialization of dictionaries in C#

//Dictionary<String, String>
var languages = new Dictionary<stringstring> {
    {"ru""russian"}, 
    {"en""english"}
};

//Dictionary<Int, String>
var numbers = new Dictionary<intString> {
    {1, "one"}, {2, "two"}, {3, "three"}
};

//Dictionary<Int, Employee>
var employees = new Dictionary<intEmployee> {
    {1, new Employee("Pavlov""Anton")},
    {2, new Employee("Kirienko""Elena")}
};