我可以导出 C++与 C# dll 的 C 风格方法的接口
我试图避免 COM。我正在 C++ exe 上设计混合 C# 和 C++ 控件。
我想到的一种方法是从 C# 调用我的 C++ exe,并将 Windows 消息发送到 C# 窗口。然而,我在控件基类上调用的方法数量太长,无法证明 Windows 消息的合理性。
因此,如果可以将整个 C# 接口导出到 C++ exe,那就容易多了。
我想避免使用 COM,因为我可能必须支持 Windows 2000,并且在不依赖清单的情况下使用 COM 会对目前在注册表中设置不多的软件包造成部署麻烦。
I'm trying to avoid COM. I'm designing a mixture C# and C++ controls on a C++ exe.
One method I came up with is PInvoking my C++ exe from C#, and sending windows messages to the C# windows. However the amount of methods I call on the controls base class is too long to justify windows messages.
So, if it's possible to export a whole C# interface to a C++ exe, that would be way easier.
I want to avoid COM because I may have to support windows 2000, and doing COM without relying on the manifest would be a deployment hassle on a software package that currently doesn't set much in the registry.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以为每个 C++ 控件以及 C# 的 PInvoke 编写一个 C 包装器。
例如,这个 C++ 类:
以及 c++ exe 中的 extern "C" 块:
以及 C# 中:
You could write a C wrapper for each of your C++ controls, and PInvoke from C#.
For example this C++ class:
and in a extern "C" block in your c++ exe:
and in C#:
我使用 C++/CLI 和 VS 2010 来执行此操作。您可以公开一个可以按通常方式使用的 DLL C 接口,实现只是将该接口中的数据编组到您的 C# 程序集。
我认为相关问题 调用 C#来自 C++、反向 P/Invoke、混合模式 DLL 和 C++/CLI
I use C++/CLI with VS 2010 to do this. You can expose a DLL C interface that can be consumed in the usual way, the implementation would just marshal data from that interface to your C# assembly.
Related question I think Calling C# from C++, Reverse P/Invoke, Mixed Mode DLLs and C++/CLI