Java & Linux : Fishing in the Desert
Databases, Web Services & Microservices
Friday, February 4, 2011
C# HelloWorld WebService
<%@ WebService Language="C#" class="HelloWorld"%>
using System.Web.Services;
public class HelloWorld : WebService
{
[WebMethod]
public string HelloWorldMethod()
{
return "Hello World";
}
}
No comments:
Post a Comment
‹
›
Home
View web version
No comments:
Post a Comment