コード例 #1
0
ファイル: Program.cs プロジェクト: Sciku/WCF.Lab2_Clients
        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);
        }
コード例 #2
0
ファイル: Hobby.aspx.cs プロジェクト: Sciku/WCF.Lab2_Clients
 protected void Button1_Click(object sender, EventArgs e)
 {
     HobbyClient host = new HobbyClient();
     Label1.Text = host.WorstMovieTitle(TextBox1.Text);
 }