我可以在单个程序集中使用 C# 和 C++/CLI 吗?

发布于 2024-09-02 04:55:00 字数 58 浏览 3 评论 0原文

我可以将 C# 和 C++/CLI 源文件放在一个项目中,然后编译它们以获得单个 .DLL 程序集吗?

Can I put together both C# and C++/CLI source files in a single project, and then compile them to obtain a single .DLL assembly?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

街角迷惘 2024-09-09 04:55:00

您可以使用命令行工具从 c++/cli 和 c# 代码中获取单个 DLL。假设您有两个文件:包含 C++/CLI 代码的 A.cc 和包含 C# 代码的 B.cs。它应该看起来像这样:

  • 首先将 c++ 代码编译成 .obj 文件 cl.exe /MD /c /clr A.cc
  • 将 c# 代码编译成“模块”,使用 /addmodule 开关添加之前创建的 .obj : csc.exe /target:module /addmodule:A.obj B.cs
  • 然后将模块链接到单个 DLL 中: link.exe /DLL /LTCG /NOENTRY /CLRIMAGETYPE:IJW A. obj B.netmodule

我还没有测试过它,但它应该可以工作。

You can obtain single DLL from code both in c++/cli and c# using command line tools. Let's assume you have two files: A.cc with C++/CLI code and B.cs with C# code. It should look something like this:

  • First compile c++ code into .obj file cl.exe /MD /c /clr A.cc
  • Compile c# code into "module" adding previously created .obj with /addmodule switch: csc.exe /target:module /addmodule:A.obj B.cs
  • Then link the module into single DLL: link.exe /DLL /LTCG /NOENTRY /CLRIMAGETYPE:IJW A.obj B.netmodule

I haven't tested it but it should work.

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