Pinvoke 与 ManagedCode
我想知道将 C++ 代码转换为 C# 或从 C# 应用程序中 Pinvoking 哪个更好
,这在性能和内存等方面会更好
I was wondering which is better translating a C++ code to C# or Pinvoking it from C# app
which would be better in terms of performance and memory and other
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您在 Windows 上运行,则第三个选项(列表中缺少的那个)是最好的。将代码保留在 C++ 中并使用 C++/CLI 进行编译。然后你的 C# 代码可以直接使用它,而不需要 P/invoke 或翻译。
If you are running on Windows the third option (the one missing from your list) is best. Leave the code in C++ and compile it with C++/CLI. Then your C# code can consume it directly without need for P/invoke or translation.
MSDN 上有关于如何执行此操作的详细说明。
There's a good description of how to do this on MSDN.