home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2005 June (DVD) / DPPRO0605DVD.iso / dotNETSDK / SETUP.EXE / netfxsd1.cab / FL_HelloService_vb________.3643236F_FC70_11D3_A536_0090278A1BB8 < prev    next >
Encoding:
Text File  |  2001-08-21  |  443 b   |  16 lines

  1. 
  2. Imports System
  3.  
  4.  
  5. Namespace Hello
  6.     
  7.     Public Class HelloService
  8.         Inherits MarshalByRefObject
  9.         
  10.         Public Function ReturnGreeting(name As [String]) As [String]
  11.             Dim message As [String] = "Hi there " + name + ", you are using .NET Remoting"
  12.             Console.WriteLine(message)
  13.             Return message
  14.         End Function 'ReturnGreeting
  15.     End Class 'HelloService
  16. End Namespace 'Hello