using System.Collections.Generic;
public static void Main()
List<string> authors = new List<string>();
authors.Add("Mahesh Chand");
authors.Add("Chris Love");
authors.Add("Allen O'neill");
authors.Add("Naveen Sharma");
authors.Add("Monica Rathbun");
authors.Add("David McCarter");
authors.Remove("Monica Rathbun");
foreach (string a in authors){