List<string> strings = new List<string>();
strings.Add("First");
strings.Add("Second");
strings.Add("Third");
// Remember, this is how you print all the items in a list
strings.ForEach(Console.WriteLine);
RemoveLast(strings);
RemoveLast(strings);
strings.ForEach(Console.WriteLine);