Sophie

Sophie

distrib > Fedora > 13 > i386 > by-pkgid > a709ddb20745c7012e3d3a00b31ca2a7 > files > 257

python-ZSI-2.0-6.fc13.noarch.rpm

//
// To use this:
//  wsdl Echo.wsdl
//  csc /t:library EchoService.cs
//  csc Echo.cs /r:EchoService.dll

using System;

class Echo {
  public static void Main(string[] args) {
   
   EchoService server = new EchoService();

   string request = "Test C#";

   server.Echo(ref request);

   Console.WriteLine("Return: " + request);
  }
}