public static void Main()
        {
            UserLib.WriteTitle("5.1 Tournament Scores");
            Tournament myTournament = new Tournament();

            myTournament.GetScores();
        }
Example #2
0
        public void Show()
        {
            Console.Clear();
            UserLib.WriteTitle("Top Ten MP3");

            int i = 0;

            foreach (string song in topTen)
            {
                i++;
                Console.WriteLine("\tSong Title " + i + ": " + song);
            }
        }
Example #3
0
 public void GetVote()
 {
     int vote = UserLib.GetInt("Choose 1 - " + topTen.Count() + " > ");
 }