home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic .NET - Read Less - Learn More / Visual_Basic.NET_Read_Less_Learn_More_Richard_Bowman_Visual_2002.iso / Resources / Code / Ch11-AddWebServiceRef / Module1.vb < prev   
Text File  |  2001-09-02  |  189b  |  10 lines

  1. Module Module1
  2.     
  3.     Sub Main()
  4.         Dim math As New localhost.Service1()
  5.         Console.WriteLine(math.WebAdd(5, 4))
  6.         Console.ReadLine()
  7.     End Sub
  8.     
  9. End Module
  10.