C#调用C++Dll
提前声明:
1,本教程以 x86 的C#程序(控制台,类库或其它)调用 win32 的C++Dll为案例,x64 的C#程序与x64 的C++Dll也可以,AnyCPU是不行的,会提示下图错误:
2,本教程使用的软件为VS2022,环境为NET8,时间为2023-11-22,后期可能有其它变化。
C++项目准备:
1,创建 win32 C++ 空项目
2,项目配置
a,win32,输出为dll;
b,无论你是.net程序,.net core程序,还是net framework程序,这个公共语言运行时支持只能选.NET Framework 运行时(/clr),选.NET运行时不行,不知原因;
c,符合模式,否;
d,编译为C++TP
e,代码 MyMath
.h文件
#pragma once
extern "C" __declspec(dllexport) int Add(int x, int y);
.cpp文件
#include "MyMath.h"
int Add(int x, int y)
{
return x + y;
}
c#项目调用:
任意 x86 的C#程序,引用C++项目生成的dll
[DllImport("LcCpp.dll", EntryPoint = "Add", CallingConvention = CallingConvention.Cdecl)]
public static extern int Add(int a, int b);
LcCpp.dll是你C++项目生成的dll文件名,请根据实际情况进行调整。
最后 直接调用 Add(a,b),就能通过c++dll计算结果。
如有问题,随时留言,互相交流,互相学习,祝各位生活愉快!