从 c++ 调用 C# com 加载项
我有一个用 C++(不是 C++/CLI)编写的 COM 加载项。 我想从这个 C++ com 库调用 C# 库对象/方法。
我想《特定常规武器公约》就在这里出现,我目前正在读到它。
根据您的经验,是否有任何关于这些内容的快速提示?
另外,我的 Com 加载项中有一个方法,我希望我的 C# 库代码能够调用该方法 - 即方法指针调用。
您能否帮助告诉我如何做到这一点 - 即我如何将方法指针传递给 C# 代码,以便稍后可以调用它。
谢谢。
I have a COM add-in written in C++ (not C++ / CLI). I want to call a C# library objects/methods from this C++ com library.
I guess the CCW comes into picture here, which i am currently reading about.
Are there any quick pointers to this stuff from your experience?
Also, i have a method in my Com add-in that i would like my C# library code to call - i.e. a method pointer invocation.
Can you help telling me how i can do this please - i.e. how do i go about passing the method pointer to the C# code so it can call on it later.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我有这个链接给你:
COM 互操作第 1 部分示例
从 .Net 环境中创建 DCOM 应用程序:第五部分< br>
C++ 到 C# 调用
I have this links for you:
COM Interop Part 1 Sample
Create DCOM application from within .Net environment: Part V
C++ to C# call