Ejemplo n.º 1
0
 private void btnCallService_Click(object sender, EventArgs e)
 {
     localhost.BookFinderServiceClient client = new localhost.BookFinderServiceClient();
     lblBookinfo.Text = string.Empty;
     foreach (string Title in client.GetBookList())
     {
         lblBookinfo.Text += Title + ", ";
     }
 }