我得到了没有文档的wsdl。
它有两个
<!--Zero or more repetitions:-->
<FL>?</FL>
<!--Zero or more repetitions:-->
<Mp>?</Mp>
转换为c#时返回
public string[] FL {
get {
return this.flfield;
}
set {
this.flfield = value;
}
}
public string[] Mp {
get {
return this.mpField;
}
set {
this.mpField = value;
}
}
现在我的问题是,它希望我通过什么?字符串数组?真的吗?