初始化时申请内存,用完记得释放,不然就会报“内存已满”的。
使用时:
pMem = Marshal.AllocHGlobal(detectSize);
释放内存:
Marshal.FreeHGlobal(pMem);