C# dll 可以轻松地在 C++/CLI 项目中使用吗?

发布于 2024-09-28 19:59:34 字数 132 浏览 2 评论 0原文

我有一个 C++/CLI 项目,一个 GUI 应用程序,它以混合模式(托管+非托管)编译。 现在我想使用C#编写一个自定义用户控件并将其编译为CSharpA.dll。 我的问题是:我的 C++/CLI 项目可以轻松使用这个 dll 吗?我该怎么做呢?

I have one C++/CLI project, a GUI application, which is compiled in mixed mode (managed+unmanaged).
Now I want to write a custom user control using C# and compile it to become CSharpA.dll.
my question is: Can this dll be used by my C++/CLI project easily? How would I do that?

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

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

发布评论

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

评论(2

明月松间行 2024-10-05 19:59:34

是的。只需添加对其的引用即可。您可能会发现自己需要 using namespace 指令,该指令与 C# using 指令一样,会将其他命名空间中的类添加到搜索空间中。

Yes. Just add a reference to it. You may find yourself wanting using namespace directives, which, like the C# using directive, will add classes in other namespaces into the search space.

冬天的雪花 2024-10-05 19:59:34

您只需将 C# 代码编译为程序集,并且可以像任何其他程序集一样从您的 C++/CLI 应用程序引用该程序集。

You only have to compile your C# code into an assembly, and this assembly can be referenced from your C++/CLI App as any other assembly.

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