C# dll 可以轻松地在 C++/CLI 项目中使用吗?
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的。只需添加对其的引用即可。您可能会发现自己需要
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.您只需将 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.