C Sharp (C#) - Collections
Identify the error in this C# code snippet using List<string>:
Listcolors = new List (); colors.Add("red"); colors[1] = "blue"; Console.WriteLine(colors[1]);
