且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

调用C#从C ++方法不使用COM

更新时间:2023-12-04 15:43:01

如果您使用的是C ++ / CLI,那么你可以与被管理的世界和非托管code直接交互,所以互操作实在是微不足道。

If you are using C++/CLI then you can interact directly with both the managed world and unmanaged code, so interop is trivial.

您也可以托管CLR自己,而托管API是基于COM,你可以再创建任何托管对象。这个过程是不是一个困难的,因为它听起来那么几个API调用封装了很多功能。有很多的信息网上,例如在 MSDN文档托管的公共语言运行时

You can also host the CLR yourself, and whilst the hosting API is COM based, you can then create any managed object. The process isn't a difficult as it sounds as a few API calls encapsulate a lot of functionality. There is a lot of info online, for example the MSDN documentation on "Hosting the Common Language Runtime".