我有一个非托管DLL,其函数使用指针作为参数。如何在不“不安全”的情况下从C#传递指针?

这是一些示例代码:

[DllImport(@"Bird.dll")]
private static extern bool foo(ushort *comport);

header 中的相应条目:
BOOL DLLEXPORT foo(WORD *pwComport);

当我尝试对其进行简单地取消引用(&comport)时,出现一条错误消息:“指针和固定大小的缓冲区只能在不安全的上下文中使用。”

我该如何解决?

最佳答案

使用ref:

[DllImport(@"Bird.dll")]
private static extern bool foo(ref ushort comport);

这样称呼它:
ushort comport;
foo(ref comport);

对于这样的互操作,我更喜欢使用UInt16而不是ushort等效于WORD

关于c# - 如何将指针从C#传递到非托管DLL?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5490964/

10-11 11:45