C Sharp (C#) - Collections
What will be the output of this C# code?
Listfruits = new List () {"apple", "banana"}; fruits.Add("cherry"); Console.WriteLine(fruits.Count);
