日期:2014-05-17 浏览次数:21150 次
public static extern IntPtr GetDataByteArray();
.............
int lpByte = (int)GetDataByteArray();
byte[] vbyte = new byte[len];
for (int i = 0; i < len; i++)
{
vbyte[i]=System.Runtime.InteropServices.Marshal.PtrToStructure((IntPtr)(lpByte++),typeof(byte));
}