写一个简单的 web service
然后运行,测试一个helloworld
你能猜到会返回什么吗?
public service1: WebService
{
public service1()
{
}
[WebMethod]
public string HelloWorld()
{
return "Hello World, I am running in montaque notebook .NET";
}
[WebMethod]
public ArrayList [] TestArrayList()
{
ArrayList [] ar=new ArrayList[1];
ar[0].Add(1);
ar[0].Add(2);
return ar;
}
}
{
public service1()
{
}
[WebMethod]
public string HelloWorld()
{
return "Hello World, I am running in montaque notebook .NET";
}
[WebMethod]
public ArrayList [] TestArrayList()
{
ArrayList [] ar=new ArrayList[1];
ar[0].Add(1);
ar[0].Add(2);
return ar;
}
}
然后运行,测试一个helloworld
你能猜到会返回什么吗?