您好,登錄后才能下訂單哦!
這篇文章主要講解了“c#如何調用c++的DLL”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“c#如何調用c++的DLL”吧!
C#是托管型代碼,創建的對象會自動回收。C++是非托管型代碼,創建的對象需要手動回收(有時不手動回收,可能出現內存溢出的問題)。
C#調用C++的方式分為兩種:(1)采用托管的方式進行調用;(2)非托管的方式進行調用。
創建新的c++項目
Function.h中的代碼,一個返回兩數之和的方法,一個返回字符串的方法
#pragma once #include <string> public ref class Function { public: Function(void); ~Function(void); int menber; int menberFuncAdd(int a,int b); System::String^ say(System::String^ str); }; //.cpp #include "Function.h" Function::Function(void) { } Function::~Function(void) { } int Function::menberFuncAdd(int a,int b) { return a+b; } System::String^ Function::say(System::String^ str) { return str; }
Function.h中空白不用寫
#include "Function.h"
注意:c++的項目一定要選擇公共語言運行時支持
在c#的項目中像引用c#的dll一樣引用
代碼中調用
Function fun = new Function(); int a = fun.menberFuncAdd(1, 2); string s = fun.say("Hello World");
注意:c#項目一定要選擇x86,否則要報錯。
運行效果:
創建新的c++項目
stdafx.h中的代碼
// stdafx.h : 標準系統包含文件的包含文件, // 或是經常使用但不常更改的 // 特定于項目的包含文件 // #pragma once #include "targetver.h" #ifdef A_EXPORTS #define DLL_API __declspec(dllexport) #else #define DLL_API __declspec(dllimport) #endif #define WIN32_LEAN_AND_MEAN // 從 Windows 頭文件中排除極少使用的信息 // Windows 頭文件: #include <windows.h> extern "C" DLL_API void MessageBoxShow(); // TODO: 在此處引用程序需要的其他頭文件
dllmain.cpp中的代碼
#include "stdafx.h" BOOL APIENTRY DllMain( HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved ) { switch (ul_reason_for_call) { case DLL_PROCESS_ATTACH: case DLL_THREAD_ATTACH: case DLL_THREAD_DETACH: case DLL_PROCESS_DETACH: break; } return TRUE; } #ifdef _MANAGED #pragma managed(push, off) #endif void MessageBoxShow() { MessageBox(NULL, TEXT("Hello World"), TEXT("In a DLL"), MB_OK); } #ifdef _MANAGED #pragma managed(pop) #endif
注意:c++的項目一定要選擇公共語言運行時支持
在代碼加上
[DllImport("ll.dll")] public extern static void MessageBoxShow();
注意:c#項目一定要選擇x86,否則要報錯。
運行結果:
感謝各位的閱讀,以上就是“c#如何調用c++的DLL”的內容了,經過本文的學習后,相信大家對c#如何調用c++的DLL這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。