C Sharp (C#) - Collections
What will be the output of this C# code?
var list = new LinkedList<string>();
list.AddLast("apple");
list.AddFirst("banana");
list.AddLast("cherry");
Console.WriteLine(list.First.Value);