Beispiel #1
0
        static void Main(string[] args)
        {
            HobbyClient host = new HobbyClient();
            Console.WriteLine("Skriv in ett år och få tillbaka vilken film som fick en Razzie för sämsta film det året");
            var year = Console.ReadLine();

            Console.WriteLine(host.WorstMovieTitle(year));
            System.Threading.Thread.Sleep(5000);
        }
Beispiel #2
0
 protected void Button1_Click(object sender, EventArgs e)
 {
     HobbyClient host = new HobbyClient();
     Label1.Text = host.WorstMovieTitle(TextBox1.Text);
 }