using System.Collections.Generic;
public static void Main()
List<int> l = new List<int>();
List<int> l1 = new List<int>();
l1 = new List<int> (l.ToArray());
Console.WriteLine(l1[0]);
Console.WriteLine(l.ToArray().Length);
Console.WriteLine(l1.ToArray().Length);