public static void viewSpecificEvent() { int id; string ev; Console.Clear(); Console.WriteLine(eCoord.eventList()); Console.Write("Please enter an event id to View:"); id = getIntChoice(); Console.Clear(); ev = eCoord.getEventInfoById(id); Console.WriteLine(ev); Console.WriteLine("\nPress any key to continue return to the previous menu."); Console.ReadKey(); }