在 C++ 中动态加载 C# dll?

发布于 2024-11-16 21:49:54 字数 701 浏览 1 评论 0原文

可能的重复:
如何在 vc++ 中使用 c# Dll?
从 .net DLL 导出本机 C 函数?

我正在编写 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文