生成動態(tài)鏈接庫(.dll)
打開visual stduio 新建項目選擇動態(tài)鏈接庫(DLL)
不使用預(yù)編譯頭
刪除 phb.h和phb.cpp 兩個文件,并創(chuàng)建自己的文件如圖
編寫代碼 AddOperator.h:
#pragma once
// c# 不認識c++代碼烤芦,所以 extern "C" 很關(guān)鍵
extern "C" _declspec(dllexport) int Sum(int a, int b);
AddOperator.cpp:
#pragma once
#include "AddOperate.h"
#include "iostream"
using namespace std;
int Sum(int a, int b)
{
if (a - (int)a != 0 || b - (int)b != 0) {
cout << "請輸入整數(shù)" << endl;
return -1;
}
return a + b;
}
F7 生成解決方案举娩,找到生成的.dll文件,32位的就拷貝到C:\Windows\System32,64位的就拷貝到C:\Windows\SysWOW64铜涉,或者將dll文件跟可執(zhí)行文件放一起智玻。
使用動態(tài)鏈接庫
參考以下代碼
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Runtime.InteropServices;
namespace WindowsFormsApp1
{
public partial class Form1 : Form
{
[DllImport("Dll1.dll", CallingConvention = CallingConvention.Cdecl)]
extern static int Sum(int a, int b);
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
MessageBox.Show(Sum(2, 1).ToString());
}
}
}