如何“填充” 具有浮点值的 IntPtr 参数?
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您可以使用不安全块,则此块有效:
它创建一个 IntPtr,其中包含等于浮点的二进制表示形式的地址。
也应该可以将参数声明为浮点型。 无论如何它都是 32 位的[假定为 32 位 C-DLL]。
If you can use unsafe blocks, this one works:
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].