1.創(chuàng)建一個(gè)C++動(dòng)態(tài)鏈接庫(kù)(通過VS圖形引導(dǎo)界面)
2.添加C++類
CallC.cpp
// CallC.cpp : 定義 DLL 應(yīng)用程序的導(dǎo)出函數(shù)。
//
#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.在相同解決方案下創(chuàng)建一個(gè)C#工程(WinForm就可以),再添加一個(gè)調(diào)用C++類庫(kù)的函數(shù)轉(zhuǎn)換類,
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),也可以一次性設(shè)置好C++類庫(kù)的Dll 輸出路徑,設(shè)置方式如下:
右鍵項(xiàng)目->屬性->屬性配置->常規(guī)->輸出目錄。
創(chuàng)新互聯(lián)www.cdcxhl.cn,專業(yè)提供香港、美國(guó)云服務(wù)器,動(dòng)態(tài)BGP最優(yōu)骨干路由自動(dòng)選擇,持續(xù)穩(wěn)定高效的網(wǎng)絡(luò)助力業(yè)務(wù)部署。公司持有工信部辦法的idc、isp許可證, 機(jī)房獨(dú)有T級(jí)流量清洗系統(tǒng)配攻擊溯源,準(zhǔn)確進(jìn)行流量調(diào)度,確保服務(wù)器高可用性。佳節(jié)活動(dòng)現(xiàn)已開啟,新人活動(dòng)云服務(wù)器買多久送多久。