C Sharp (C#) - Collections
Identify the error in this code snippet:
var list = new LinkedList<int>(); list.AddFirst(1); list.AddLast(2); list.Remove(3); Console.WriteLine(list.Count);
