What are my options for C++ DLL to call a C# DLL?

柔情痞子 提交于 2019-12-01 11:10:27

Couple of options available for you here

  1. Use a mixed mode C++/CLI assembly as a bridge between the C++ and C# DLL
  2. Use the a COM bridge by exposing several of the key C# types as COM objects. This can then be accessed via the C++ code by normal COM semantics

This project Creates dll exports for static methods in classes. You could then call a C# static method from unmanaged code.

One approach that would work would be to call it though COM. You can use the Regasm tool to create the COM wrapper.

It's not the only option.

You could also compile your C++ DLL as a managed DLL.

You could host your C# DLL as a service and remote into it.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!