using System.Collections.Generic;
showcurrentarcadeandbowlingstats,
static string Name{get;set;}
static string employmentstatus{get;set;}
static int highscorerank{get;set;}
static string slushpreference{get;set;}
static int bowlinghighscore{get;set;}
static DateTime startingdate{get;set;}
static int numberofpizzasconsumed{get;set;}
static void showcurrentarcadeandbowlingstats()
static void capturedetails()
static void checkgametoken()
public static void Main()
List<Applicant> applicants=new List<Applicant>();
Console.WriteLine("-----------------------------------------------");
Console.WriteLine("Please choose and option ");
Console.WriteLine("-----------------------------------------------");
Console.WriteLine("1.Capture Details ");
Console.WriteLine("2.Check game token");
Console.WriteLine("3.Show Current Arcade and bowling stats");
Console.WriteLine("4.Exit");
int choice=ConvertToInt32(Console.ReadLine());
useroptions SelectedChoice=(useroptions)choice;
case useroptions.Capturedetails:
Console.WriteLine("You chose to capture details");
case useroptions.Checkgametoken:
Console.WriteLine("You chose to check the game tokens");
case useroptions.showcurrentarcadeandbowlingstats:
Console.WriteLine("Your current arcade and bowling stats are as follows ");
showcurrentarcadeandbowlingstats();
Console.WriteLine("please enter the correct number from the list of options");