MFC 调用C# webservice
C++ 如何调用c# 发布的websrvice ?
我能调用 但不能 进行byte[] 数组传递;
webservice
[WebMethod] public string uplowadfile(byte[] fidata) { try { MemoryStream ms = new MemoryStream(fidata); string filepath = @"G:\\test.txt"; FileStream stream = new FileStream(filepath , FileMode.OpenOrCreate); ms.WriteTo(stream); ms.Close(); stream.Close(); ms = null; stream = null; return "finish"; }array<byte> aa=gcnew array<byte>('0xff','0x11');