using System.Collections.Generic;
namespace Simple
{
public class Program
public static void Main()
Dictionary<int, string> dic = new Dictionary<int, string>()
[0] = "one",
[1] = "two",
[2] = "three"
};
}