调用非托管 C++来自 C# 的类 DLL
如何从 C# 调用非托管 C++ 类 DLL?
How can I call unmanaged C++ Class DLL from C#?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何从 C# 调用非托管 C++ 类 DLL?
How can I call unmanaged C++ Class DLL from C#?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
您可能希望为该类创建托管 C++ 包装器,使用 /clr(公共语言运行时支持)对其进行编译,然后可以在 C# 中使用它。
您可能还想查看 PInvoke。
You may want to create a managed C++ wrapper for that class, compile it with /clr (common language runtime support) and then you can use it in C#.
You may also want to look at PInvoke.
CLR 不支持直接使用本机 C++ 类,它更喜欢通过 PInvoke 调用静态方法,或者通过 COM 互操作使用 COM 接口。因此需要某种 C++ 包装器。
The CLR doesn't support directly using native C++ classes, it prefers static methods to call via PInvoke or COM interfaces to use via COM interop. So some kind of C++ wrapper is required.
您需要使用 P/Invoke &它的编组
You need to use P/Invoke & its marshalling
例如这样:
创建您的小包装器,导入所需的函数并调用
For example like this :
Create your small wrapper, import desired functions and call