C Sharp (C#) - Collections
What will be the output of this C# code?
var list = new LinkedList<int>(); list.AddLast(10); list.AddLast(20); list.AddLast(30); list.Remove(20); Console.WriteLine(list.Count);
