我收到以下错误
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);