using System.Collections.Generic;
public static void Main()
List<String> fList = new List<String>();
Console.WriteLine("Welcome to Friend's Database.");
Console.WriteLine("Enter 'E' to exit, 'A' to add friend, 'D' to display list, 'R' to remove a friend:, 'S' to search");
uChoice = Console.ReadLine();
if (uChoice.ToUpper().Equals("D")){
foreach (String f in fList){
} while (!uChoice.ToUpper().Equals("E"));