Passing a struct with a byte array inside to a interop-ed method

限于喜欢 提交于 2019-12-02 09:59:30

Since you don't want to use fixed, your byte arrays are best declared as IntPtr, allocated with AllocHGlobal and filled with data using Marshal.Copy. There's no way to get the P/invoke marshaller to do what you need using MarshalAs.

If you don't need the union as such in managed code, don't make it a union. Declare two structs and two overloads of your p/invoke function.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!