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); }
protected void Button1_Click(object sender, EventArgs e) { HobbyClient host = new HobbyClient(); Label1.Text = host.WorstMovieTitle(TextBox1.Text); }