示例#1
0
 void PrintAllContestantInfo(Contestant contestant)
 {
     foreach (KeyValuePair<int, string> pair in sweepstakesDictionary)
     {
         Console.WriteLine("{0}, {1}", contestant.GetNumber, contestant.GetName);
     }
     
 }
示例#2
0
 void PrintContestantInfo(Contestant contestant)
 {
     Console.WriteLine("{0}, {1}", contestant.GetNumber, contestant.GetName);
 }
示例#3
0
 void RegisterContestant(Contestant contestant)
 {
     sweepstakesDictionary.Add(contestant.GetNumber, contestant.GetName);
 }