当我们想要在C#中使用C++项目的方法时,这个时候就可以通过调用C++项目的dll来实现,它有静态和动态调用两种方法。
DLL(Dynamic Link Library)文件为动态链接库文件,又称“应用程序拓展”,是软件文件类型。在Windows中,许多应用程序并不是一个完整的可执行文件,它们被分割成一些相对独立的动态链接库,即DLL文件,放置于系统中。当我们执行某一个程序时,相应的DLL文件就会被调用。一个应用程序可使用多个DLL文件,一个DLL文件也可能被不同的应用程序使用,这样的DLL文件被称为共享DLL文件。[1] (百度百科)
我们在C++项目中写了如下的一个方法:
那么只需将C++项目下Debug中的dll文件复制到我们C#的bin\Debug\文件夹下即可。
然后就是在代码中调用它。
注意:
主要是处理
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Runtime.InteropServices; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace CSharp调用静态的dll { public partial class Form1 : Form { [DllImport("TestDll01.dll", CallingConvention = CallingConvention.Cdecl)] private extern static int testCount(int a, int b); public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { MessageBox.Show(testCount(12, 14).ToString()); } } }
运行结果: