public static void Main() { UserLib.WriteTitle("5.1 Tournament Scores"); Tournament myTournament = new Tournament(); myTournament.GetScores(); }
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); } }
public void GetVote() { int vote = UserLib.GetInt("Choose 1 - " + topTen.Count() + " > "); }