using System.Collections.Generic;
public static void Main()
LinkedList<String> my_list = new LinkedList<String>();
my_list.AddLast("Shilpa");
my_list.AddLast("Rohit");
my_list.AddLast("Rohan");
Console.WriteLine("Best students of XYZ university:");
foreach(string str in my_list)