将无符号数组从托管复制到非托管
Marshal.copy 仅允许签名数据类型,但我有一个巨大的 uint16 数组要传递给 IPP 代码。有什么想法吗?
循环不安全似乎是错误的......
Marshal.copy allows for signed data types only, but I have a giant array of uint16 to pass to IPP code. Any ideas ?
unsafe for looping on it seems wrong ...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 kernel32 中良好的旧内存复制 API 并声明参数类型以满足您的需求。
You can use the good old mem copy API from kernel32 and declare the parameter types to fit your needs.