我正在尝试做某事,但我不确定 c# 中是否允许这样做:
我有一个不是静态的 Web 方法,它是:
[WebMethod]
public Byte[] recStuff(Byte[] recstuffile)
{
myfile = Unzip(muStuff);
return null;
}
这是我的客户:
public static XmlDataService.StufServiceSoapClient lhaservice = null;
public static void Autoupload()
{
string fileContents = File.ReadAllText(XMLStuffName);
string text = fileContents;
byte r2 = Zip(text);
lhaservice.recStuff(r2);
}
我收到错误消息:
Object reference not set to an instance of an object.
我能在这里做什么?