在 C++ 中动态加载 C# dll?
我正在编写 C# dll,它应该与用 C++ 编写的现有应用程序挂钩,该应用程序使用动态 dll 加载插件。我无法对 C++ 应用程序进行任何更改。
我发现了很多关于如何使用 tlb (静态加载)编写将在 C++ 中使用的 C# COM dll 的教程,但没有关于如何编写将动态加载的 C# dll (就我现在而言,没有使用 tbl在这种情况下)。
那么,如何用c#编写dll让c++应用程序能够动态加载呢?
Dll 只需要两个具有两个带签名的函数:
int Test (char *A, char *B);
结果应通过第二个参数 (char *B
) 返回。如果我用 C++ 编写插件,那么函数应该是这样的。我需要做同样的事情,但是用 c#
Possible Duplicates:
How to use c# Dll in vc++??
Exporting a native C function from a .net DLL?
I'm writing C# dll that should be hooked to existing application written in C++ that uses dynamic dll loading for plugins. I can't make any changes to C++ application.
I found a lots of tutorials on how to write C# COM dll that will be used in C++ using tlb (static loading), but none on how to write c# dll that will be dynamically loaded (as far as I now, no use of tbl in that case).
So, how to write dll in c# that will c++ application be able to dynamically load?
Dll just need two have two functions with signature:
int Test (char *A, char *B);
result should be returned via second parameter (char *B
). That's how function should look if I were writing plugin in c++. I need to make the same thing, but in c#
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论