如何将指针从 C# 传递到非托管 DLL?
我有一个非托管 DLL,其函数采用指针作为参数。如何从 C# 传递指针而不“不安全”?
下面是一些示例代码:
[DllImport(@"Bird.dll")]
private static extern bool foo(ushort *comport);
标头中的相应条目:
BOOL DLLEXPORT foo(WORD *pwComport);
当我尝试简单地取消引用它 (&comport
) 时,我收到一条错误消息:“指针和固定大小缓冲区可能只能是在不安全的环境中使用。”
我该如何解决这个问题?
I have an unmanaged DLL with a function that takes a pointer as an argument. How do I pass a pointer from C# without being 'unsafe'?
Here's some example code:
[DllImport(@"Bird.dll")]
private static extern bool foo(ushort *comport);
The corresponding entry in the header:
BOOL DLLEXPORT foo(WORD *pwComport);
When I try and simply dereference it (&comport
), I get an error saying: "Pointers and fixed size buffers may only be used in an unsafe context."
How do I work around this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
ref
:像这样调用它:
对于这样的互操作,我更喜欢使用
UInt16
而不是ushort
作为的等价物>字。
Use
ref
:Call it like so:
For interop like this, I'd prefer to use
UInt16
rather thanushort
as the equivalent toWORD
.