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

            myTournament.GetScores();
        }
Beispiel #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);
            }
        }