开发者

call unmanaged C++ code from C# using pinvoke

开发者 https://www.devze.com 2023-03-12 07:33 出处:网络
I have a unmanaged C++ dll for which I do not have access to code but have all methods declarations for.

I have a unmanaged C++ dll for which I do not have access to code but have all methods declarations for.

Lets for simplicity say that .h looks like this:

#include <iostream>

#ifndef NUMERIC_LIBRARY
#define NUMERIC_LIBRARY

class Numeric
{
    public:
        Numeric();
        int Add(int a, int b);
        ~Numeric();
};

#endif

and method implementation in .cpp file

int Numeric::Add(int a, int b)
{
    return (a + b);
}

I simply want to call the add function from C++ in my C# code:

namespace UnmanagedTe开发者_JAVA百科ster
{
    class Program
    {
        [DllImport(@"C:\CPP and CSharp Project\UnmanagedNumeric\Debug\numeric.dll", EntryPoint = "Add")]
        public static extern int Add(int a, int b);


        static void Main(string[] args)
        {
            int sum = Add(2, 3);
            Console.WriteLine(sum);

        }
    }
}

After trying to execute I have the following error:

Unable to find an entry point named 'Add' in DLL 'C:\CPP and CSharp Project\UnmanagedNumeric\Debug\numeric.dll'.

I CAN NOT change C++ code. Have no idea what is going wrong. Appreciate your help.


Using PInvoke you can only call global functions exported from Dll. To use exported C++ classes, you need to write C++/CLI wrapper. This is C++/CLI Class Library project, which exposes pure .NET interface, internally it is linked to unmanaged C++ Dll, instantiates a class from this Dll and calls its methods.

Edit: you can start from this: http://www.codeproject.com/KB/mcpp/quickcppcli.aspx#A8


If you need to create a wrapper, take a look at swig.org. It will generate one for most high level language like C#.

I just came across this program a few minutes ago while working the same problem that you are.


To use a class from native C++ from C# you need a C++/CLi wrapper in between, as mentioned by by previous answers. To actually do that, it is not very straight forward. Here is I link that tell you how to do it at a high level: C++/CLI wrapper for native C++ to use as reference in C#.

If you are quite new to this (like me), you might stumble on 1) -- the linking part. To solve that, you can see how I did here (see my question portion): Link error linking from managed to unmanaged C++ despite linking to .lib file with exported symbols

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号