在 C 和 C# 之间交换结构(涉及指向其他结构的指针)
我想使用 PInvoke 将以下内容带到托管端:
(C 代码)
typedef 结构{
//一些字段...
} A;类型结构{
A* a;
} B;int getB(B* destination){ //destinationation 将是 C# 的输出参数
//将 B 放入“目的地”
返回0;
}
,我需要一种方法来告诉托管端如何将 B 从 C 编组到 C# 结构或类。我尝试了很多东西,例如 IntPtr 字段、MarhalAs 属性,但没有成功。我不会在这里公开我试图使问题简单的代码。不过,只要有长答案,我就可以做到。
I want to use PInvoke to bring to managed side something this:
(C code)
typedef struct{
//some fields...
} A;type struct{
A* a;
} B;int getB(B* destination){ //destionation will be an output parameter to C#
//puts an B in 'destination'
return 0;
}
Now, I need a way to tell managed side how to marshalling B from C to C# structure or class. I've tryed many things such as IntPtr fields, MarchalAs atributes, but with no success. I will not expose here the code that I've tryed to keep the question simple. However i could do it as long answers arrive.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果是我,我只会使用不安全代码并在 C# 端使用指针:
If it were me, I would just use unsafe code and use pointers on the C# side:
您可以使用 Marshal 类来做到这一点。
You can do that using the Marshal class.