1、C++中的函数声明
extern "C" __declspec(dllexport) int __stdcall testfunc(int* a, char* b,);
一般有入参,出参,返回值。这里举例a为入参,b为出参,返回值为整数,比如0。
并把dll文件放到c#同目录下,比如/bin/Debug/或/bin/Release/,那么就可以相对路径引用了。
2、C#中的函数声明
using System.Runtime.InteropServices;
[DllImport("test.dll")]
public static extern int MyFunc(int a, StringBuilder b);
c#出参用StringBuilder。StringBuilder需要using System.Text;
创建函数:
public void testFunc()
{
StringBuilder b = new StringBuilder(1024);
int rt = MyFunc(1, b);
MessageBox.Show(b.ToString());
}