调用非托管 C++来自 C# 的类 DLL

发布于 2024-09-25 05:21:34 字数 30 浏览 3 评论 0原文

如何从 C# 调用非托管 C++ 类 DLL?

How can I call unmanaged C++ Class DLL from C#?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

木格 2024-10-02 05:21:34

您可能希望为该类创建托管 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.

冷情 2024-10-02 05:21:34

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.

雪化雨蝶 2024-10-02 05:21:34

例如这样:

public unsafe class CppFunctionImport
{
    [DllImport("ImageProcessingCpp.dll", EntryPoint = "PerformMovingAverage", ExactSpelling = true, CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)]//!-!
    public static extern void PerformMovingAverage
    (
        ref byte *image,
        int width,
        int height,
        int stride,
        int kernelSize
    );
}

创建您的小包装器,导入所需的函数并调用

For example like this :

public unsafe class CppFunctionImport
{
    [DllImport("ImageProcessingCpp.dll", EntryPoint = "PerformMovingAverage", ExactSpelling = true, CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)]//!-!
    public static extern void PerformMovingAverage
    (
        ref byte *image,
        int width,
        int height,
        int stride,
        int kernelSize
    );
}

Create your small wrapper, import desired functions and call

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文