C Sharp (C#) - Collections
What will be the output of this C# code?
var fruits = new List{ "apple", "banana", "cherry" }; fruits.RemoveAt(1); Console.WriteLine(fruits[1]);
