【发布时间】:2014-11-08 14:27:59
【问题描述】:
我收到以下错误
You must implement a default accessor on System.Array because it inherits from ICollection
以下是我的源代码,
public string extractOutput(ref System.Array data)
{
obj.extractOuput(ref data);
}
我将从客户端访问此网络服务,
System.Array bytes = System.IO.File.ReadAllBytes("path_to_file");
clientObj.extractOutput(ref bytes);
【问题讨论】:
-
数组应该是字节[]
标签: c# web-services asmx system.array