using System.Collections.Generic;
public static void Main()
Dictionary<int,string> dict_1 =new Dictionary<int, string>();
Dictionary<int, string> dict_2 =new Dictionary<int,string>(dict_1);
Console.WriteLine(dict_1.Count);
Console.WriteLine(dict_2.Count);