您好,登錄后才能下訂單哦!
這期內容當中小編將會給大家帶來有關C#中怎么調用C++dll方法,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
1、新建項目->Visual C++->Win32項目 MyDLL
注意:C++編寫的dll一般是不能直接拿來C#調用,需要先新建個C++的工程把dll里的方法重新封裝成可被C#外部調用的函數。
2、MyDLL.cpp里的代碼如下:
extern "C" _declspec(dllexport)int add(int a ,int b) { int sum=a+b; return sum; }
注意:函數前一定要加extern "C" _declspec(dllexport),可被外部引用
3、項目->屬性->常規->公共語言運行庫支持->公共語言運行庫支持(/clr)
4、F5編譯程序,在Debug文件夾中找到生成MyDLL.dll目標文件備用
1、方法/步驟2
新建項目->Visual C#->控制臺應用程序 dllConsoleApplication1
2、將步驟1生成的MyDLL.dll文件copy到dllConsoleApplication1工程的根目錄下
3、
Program.cs代碼如下using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Runtime.InteropServices; //必須添加,不然DllImport報錯namespace dllConsoleApplication1{ class CPPDLL { [DllImport("MyDLL.dll", CharSet = CharSet.Ansi)] //引入dll,并設置字符集 public static extern inProgram.cs代碼如下using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Runtime.InteropServices; //必須添加,不然DllImport報錯namespace dllConsoleApplication1{ class CPPDLL { [DllImport("MyDLL.dll", CharSet = CharSet.Ansi)] //引入dll,并設置字符集 public static extern int add(int a ,int b); } class Program { static void Main(string[] args) { t add(int a ,int b); } class Program { static void Main(string[] args) { int sum=CPPDLL.add(3, 4); } }} int sum=CPPDLL.add(3, 4); } }}
4、
編譯程序,在程序中加斷點,查看函數的計算結果
5、到這里,C++dll里的方法已經在C#里調用成功了。到這里,C++dll里的方法已經在C#里調用成功了。
上述就是小編為大家分享的C#中怎么調用C++dll方法了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。