将列表发送到 Web 服务后出现错误。
这是调用 Web 服务的代码:
Dim sProgramInterest As New List(Of Integer)
crmService.InsertProspectGetId(sProgramInterest.ToList)
但我收到了这个错误。
无法将“System.Collections.Generic.List`1[System.Int32]”类型的对象转换为“crmWebService.ArrayOfInt”类型。
Web服务接受的参数是:
ByVal sProgramInterest As List(Of Integer)