C#调用dll 出现:尝试读取或写入受保护的内存。这通常指示其他内存已损坏

2024-11-25 13:06:54
推荐回答(3个)
回答1:

Marshal.StructureToPtr(device_DATA, record, false);

我猜是因为 AllocHGlobal分配的内存中存储的是一些随机内容,无法进行delete.
如果第二次调用时可以进行delete,如下Marshal.StructureToPtr(device_DATA, record, true);

回答2:

1,非托管DLL里面有个BUG,.NET调用以后出错就是这个错误
2,用X86编译出来的非托管DLL,用X64平台.NET调用以后也是这个错误

最好的方法是找到编写DLL的这个人,两个人连调

回答3:

[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#函数类型对照表