Pinvoke 与 ManagedCode

发布于 2024-12-09 11:46:36 字数 75 浏览 0 评论 0原文

我想知道将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

左秋 2024-12-16 11:46:36

如果您在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文