using System.Collections.Generic;
public static void Main(string[] args)
List <List<string>> myList = new List<List<string>>();
List<string> subList = new List<string>();
Console.WriteLine(" ********************* \n Select {1} if you'd like to Add an employee \n Select {2} if you'd like to remove an employee \n Select {3} if you'd like to display the List of employees \n *********************");
choice = int.Parse(Console.ReadLine());
Console.Write("Please enter the ID of the employee: ");
String id = Console.ReadLine();
Console.Write("Please enter the first name of the employee: ");
String fname = Console.ReadLine();
Console.Write("Please enter the last name of the employee: ");
String lname = Console.ReadLine();
Console.WriteLine("Please enter the annual salary ");
String salary = Console.ReadLine();
Console.WriteLine("Please enter the start date in this format dd/mm/yyyy: ");
String date = Console.ReadLine();
myList.Add(new List<string> {id, fname,lname, salary, date });
Console.WriteLine("What is the employee's ID number?: ");
String IDNum = Console.ReadLine();
for (int i = 0; i< myList.Count; i++)
if (IDNum == myList[i][0])
for (int i = 0; i < myList.Count; i++) {
for (int j = 0; j < 5; j++) {
Console.WriteLine(myList[i][j] + " ");
Console.WriteLine("Goodbye!");