在Web Service中将参数作为数组发送

时间:2012-02-01 05:47:39

标签: c# asp.net web-services

如何在c#?

中将参数作为数组发送到Web服务中
public xmlElement insertPurchase(string[] txtproductCode, int[] quantity
    , string user, string password)
{

}

如何从数组参数中返回xml元素

1 个答案:

答案 0 :(得分:0)

将XmlElement更改为string并从方法返回字符串。

foreach (string value in txtproductCode)
    {
        // process the value
               string productCode = value ;
    }