如何将指针从 C# 传递到非托管 DLL?

发布于 2024-10-27 20:25:09 字数 369 浏览 1 评论 0原文

我有一个非托管 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

单身狗的梦 2024-11-03 20:25:09

使用ref

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

像这样调用它:

ushort comport;
foo(ref comport);

对于这样的互操作,我更喜欢使用UInt16而不是ushort作为的等价物>字。

Use ref:

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

Call it like so:

ushort comport;
foo(ref comport);

For interop like this, I'd prefer to use UInt16 rather than ushort as the equivalent to WORD.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文