是否可以将整数数组从Web服务传递到控制台应用程序

是否可以将整数数组从Web服务传递到控制台应用程序

问题描述:

请建议我解决我的问题



我尝试过:



i尝试使用list但是显示无法传递数组请通过实现web方法帮助我将代码从Web服务传递到控制台应用程序

please suggest me to solve my problem

What I have tried:

i tried using list but it is show that unable to pass an array please help me with code to pass an array from web service to console application by implementing web method

为什么不将数据作为JSON(甚至是XML)传递? - 一旦从Web服务获得它,您可以将它从JSON反序列化到列表< int>例如
why aren't you passing the data as JSON (or even XML) ? - once you get it from the web service you can deserialise it from JSON to a list<int> for example