您好,登錄后才能下訂單哦!
1.創建一個C++動態鏈接庫(通過VS圖形引導界面)
2.添加C++類
CallC.cpp
// CallC.cpp : 定義 DLL 應用程序的導出函數。
//
#include "stdafx.h"
extern "C" __declspec(dllexport) int Add(int a , int b)
{
return a+b;
}
extern "C" __declspec(dllexport) int Sub(int a ,int b)
{
return a-b;
}
3.在相同解決方案下創建一個C#工程(WinForm就可以),再添加一個調用C++類庫的函數轉換類,
CallCFunc.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;
namespace WindowsFormsApplication1
{
class CallCFunc
{
[DllImport("CallC.dll", EntryPoint = "Add", CallingConvention = CallingConvention.Cdecl)]
public static extern int Add(int a,int b);
}
}
注:需要將C++編譯好的Dll 拷貝到C#的bin/Debug下(或Release),也可以一次性設置好C++類庫的Dll 輸出路徑,設置方式如下:
右鍵項目->屬性->屬性配置->常規->輸出目錄。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。