我想List<string>[]
在 Web 服务中返回并以 Windows 形式使用该返回,如下所示:
[WebMethod]
public List<string>[] MyMethod()
{
...
...
List<string>[] list_ar = new List<string>[]{list_optgroup, list_option, list_optgroup_option};
return list_ar;
}
但在 Windows 窗体方面,我应该得到这样的返回值:
MyService_Soft service = new MyService_Soft();
string[][] str_ar = service.MyMethod();
发生了什么事,我怎样才能List<string>[]
在 Windows 窗体一侧得到它?
此外,我似乎在这些行中有错误:
MyService_Soft service = new MyService_Soft();
string[][] str_ar = service.FillComboBoxes();
错误 :
无法自动进入服务器。连接到服务器机器 'blablabla' 失败。未知用户名或错误密码...
这个错误是什么意思,我怎样才能弄清楚该 Web 服务中的哪一行导致了这个错误?