Example #1
0
 public void CreateNewContestant()
 {
     contestant = new Contestant();
 }
Example #2
0
 public void RegisterContestant(Contestant contestant)
 {
     dictionary.Add(RegistrationNumber, contestant);
     RegistrationNumber++;
     Console.WriteLine("Contestant added! \n");
 }