我的代码如下:
public class Service : System.Web.Services.WebService
{
public Service () {
}
public class event_t
{
public string place;
public int day;
public event_t()
{
}
}
[WebMethod]
event_t getEvent(string sms)
{
event_t tmp = new event_t();
tmp.place = sms;
tmp.day = 1;
return tmp;
}
}
我的问题是:为什么当我运行 getEvent Web 方法时它是不可见的?根据 MSDN, http: //msdn.microsoft.com/en-us/library/3003scdt (v=vs.71).aspx 它应该可以工作。