如何“填充” 具有浮点值的 IntPtr 参数?

发布于 2024-07-24 01:42:18 字数 207 浏览 5 评论 0原文

我正在使用 dllImport 在 C# .NET 中使用 C 库。 该库中的方法之一使用数据类型 void* 作为参数。 我发现,我可以在 C# 中使用与 void* 匹配的数据类型 IntPtr。

现在我根本不知道如何设置这个IntPtr参数的值。 事实上我想把一个浮点值放入这个参数中。 我该怎么做?

预先感谢您的任何想法。 西蒙娜

I am using dllImport to use a C library in C# .NET. One of the methods in this library uses data type void* as parameter. I found out, that I can use the data type IntPtr in C# matching the void*.

Now I simply don't know how to set the value of this IntPtr parameter. In fact I want to put a float value into this parameter. How would I do this?

Thanks in advance for any idea.
Simone

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

一袭白衣梦中忆 2024-07-31 01:42:18

如果您可以使用不安全块,则此块有效:

static IntPtr IntPtrFromFloat( float f )
{
    unsafe
    {
        return (*(IntPtr*)&f);
    }
}

它创建一个 IntPtr,其中包含等于浮点的二进制表示形式的地址。

也应该可以将参数声明为浮点型。 无论如何它都是 32 位的[假定为 32 位 C-DLL]。

If you can use unsafe blocks, this one works:

static IntPtr IntPtrFromFloat( float f )
{
    unsafe
    {
        return (*(IntPtr*)&f);
    }
}

It creates an IntPtr containing an address equal to the binary representation of the float.

It should also be possible to just declare the parameter as float. It is 32bits anyway [32bit C-DLL assumed].

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