您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關(guān)C#如何調(diào)用C++Dll,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
1,閑著的使用做的一個測試,原因:上家公司Unity3D使用C++封裝的Socket用C#來調(diào)用.這是一個例子,事實上,如果一些運算量大的功能用C++來寫,然后使用C#調(diào)用的話,一來可以優(yōu)化性能(你懂的),而來可以隱藏(保護)代碼.不多說了,上測試
C++代碼:
// CSharpMInvoke.cpp : 定義 DLL 應(yīng)用程序的導(dǎo)出函數(shù)。 // #include "stdafx.h" extern "C" __declspec(dllexport) int Add( int x , int y ){ return x + y; }
C#代碼:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CSharpDll { public class CPPDll { [System.Runtime.InteropServices.DllImport("CSharpMInvoke.dll", CallingConvention=System.Runtime.InteropServices.CallingConvention.Cdecl)] public static extern int Add(int x, int y); } }
注意:將C++生成的dll文件(Bin文件夾中)復(fù)制到C#項目Bin/Debug中
這里是:CSharpMInvoke.dll
源文件:
關(guān)于“C#如何調(diào)用C++Dll”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。