Marshal.StructureToPtr(device_DATA, record, false);
我猜是因为 AllocHGlobal分配的内存中存储的是一些随机内容,无法进行delete.
如果第二次调用时可以进行delete,如下Marshal.StructureToPtr(device_DATA, record, true);
1,非托管DLL里面有个BUG,.NET调用以后出错就是这个错误
2,用X86编译出来的非托管DLL,用X64平台.NET调用以后也是这个错误
最好的方法是找到编写DLL的这个人,两个人连调
[DllImport("LEDSender.dll",
EntryPoint
=
"AddCountUp",
CharSet
=
CharSet.Ansi)]
public
static
extern
Int32
AddCountUp(Rect
rect,
Int32
transparent,
StringBuilder
fontname,
int
fontsize,
int
fontcolor,
int
format,
TSystemTime
starttime);
这个写错了,具体如何写,在网上查一下
c++,c#函数类型对照表