摘要: 阅读目录 一:WebService中的方法是否允许重载? 二:为什么WebService中不支持方法的重载? 三:如何解决WebService中方法的重载? 一:WebService中的方法是否允许重载? WebService中不支持使用方法的重载,从图片我们能够得出结论 1 [WebMethod] 2 public string GetName() 3 { 4 return "从小就犯困"; 5 } 6 7 [WebMethod] 8 public string GetName(string strValue) 9 {10 ... 阅读全文
posted @ 2012-03-29 16:37 David.Meng 阅读(8803) 评论(5) 推荐(6) 编辑