我有一个非托管DLL,其函数将指针作为参数。如何从C#传递指针而不是“不安全”?
以下是一些示例代码:
[DllImport(@"Bird.dll")]
private static extern bool foo(ushort *comport);
标题中的相应条目:
BOOL DLLEXPORT foo(WORD *pwComport);
当我尝试简单地取消引用它(&comport
)时,我收到一条错误消息:“指针和固定大小的缓冲区只能在不安全的上下文中使用。”
我该如何解决这个问题?
答案 0 :(得分:13)
使用ref
:
[DllImport(@"Bird.dll")]
private static extern bool foo(ref ushort comport);
这样称呼:
ushort comport;
foo(ref comport);
对于像这样的互操作,我更倾向于使用UInt16
而不是ushort
作为WORD
的等价物。