using System; using System.Collections.Generic; List list = new List(); list.Add(1); list.Add(3); list[0] = 2; Console.WriteLine(list[0]);