一、dll文件的c++制作
1、首先用vs2005建立一個(gè)c++的dll動(dòng)態(tài)鏈接庫(kù)文件,這時(shí),
// DllTest.cpp : 定義 DLL 應(yīng)用程序的入口點(diǎn)。
//
#include "stdafx.h"
//#include "DllTest.h"
#ifdef _MANAGED
#pragma managed(push, off)
#endif
BOOL APIENTRY DllMain( HMODULE hModule,
DWORD ul_reason_for_call,
LPVOID lpReserved
)
{
return TRUE;
}
#ifdef _MANAGED
#pragma managed(pop)
#endif
這段代碼會(huì)自動(dòng)生成,
2、自己建一個(gè)DllTest.h的頭文件,和DllTest.def的塊聲明文件。
其中頭文件是為了聲明內(nèi)部函數(shù)使用。塊聲明主要是為了在dll編譯成功后固定好方法名。別忘記添加#include "DllTest.h"
3、在DllTest.h中加入如下代碼
#ifndef DllTest_01
#define DllTest_01
#define EXPORT extern "C" __declspec(dllexport)
//兩個(gè)參數(shù)做加法
EXPORT int _stdcall Add(int iNum1=0,int iNum2=0);
//兩個(gè)參數(shù)做減法
EXPORT int _stdcall Subtraction(int iNum1=0,int iNum2=0,int iMethod=0);
#endif
4、在DllTest.def中加入如下代碼
LIBRARY "DllTest"
EXPORTS
Add
Subtraction
5、在DllTest.cpp中寫好代碼為
// DllTest.cpp : 定義 DLL 應(yīng)用程序的入口點(diǎn)。
//
#include "stdafx.h"
#include "DllTest.h"
#ifdef _MANAGED
#pragma managed(push, off)
#endif
BOOL APIENTRY DllMain( HMODULE hModule,
DWORD ul_reason_for_call,
LPVOID lpReserved
)
{
return TRUE;
}
#ifdef _MANAGED
#pragma managed(pop)
#endif
//加函數(shù)
int APIENTRY Add(int a,int b) // APIENTRY 此關(guān)鍵字不可少
{
return (a+b);
}
//減函數(shù)
int APIENTRY Subtraction(int a,int b,int i)
{
if(0==i)
return (a-b);
else
return (b-a);
}
6、這樣編譯生成就可以得到對(duì)應(yīng)的DllTest.dll的文件了
二、C#調(diào)用dll文件
1、創(chuàng)建一個(gè)c#的控制臺(tái)程序(當(dāng)然其他也沒(méi)有問(wèn)題),自動(dòng)生成以下代碼
using System;
using System.Collections.Generic;
using System.Text;
//using System.Runtime.InteropServices;
namespace CSharpIncludeC__Dll
{
class Program
{
static void Main(string[] args)
{
}
}
}
2、添加命名空間using System.Runtime.InteropServices;
3、若要引用dll文件,首先吧dll文件自行拷貝到bin\debug,文件夾下,沒(méi)有的話,先編譯一下。
4、添加屬性
[DllImport("DllTest.dll", CharSet = CharSet.Ansi)]
static extern int Add(int iNum1, int iNum2);
5、最終產(chǎn)生代碼
using System;
using System.Collections.Generic;
using System.Text;
using System.Runtime.InteropServices;
namespace CSharpIncludeC__Dll
{
class Program
{
[DllImport("DllTest.dll", CharSet = CharSet.Ansi)]
static extern int Add(int iNum1, int iNum2);
[DllImport("DllTest.dll", CharSet = CharSet.Ansi)]
static extern int Subtraction(int iNum1,int iNum2,int iMethod);
static void Main(string[] args)
{
int iValue = Add(1, 2);
Console.WriteLine(iValue);
iValue = Subtraction(1, 2, 1);
Console.WriteLine(iValue);
Console.Read();
}
}
}
6、生成項(xiàng)目運(yùn)行就可以了,結(jié)果是3和1
為玉泉街道等地區(qū)用戶提供了全套網(wǎng)頁(yè)設(shè)計(jì)制作服務(wù),及玉泉街道網(wǎng)站建設(shè)行業(yè)解決方案。主營(yíng)業(yè)務(wù)為成都網(wǎng)站設(shè)計(jì)、成都網(wǎng)站建設(shè)、玉泉街道網(wǎng)站設(shè)計(jì),以傳統(tǒng)方式定制建設(shè)網(wǎng)站,并提供域名空間備案等一條龍服務(wù),秉承以專業(yè)、用心的態(tài)度為用戶提供真誠(chéng)的服務(wù)。我們深信只要達(dá)到每一位用戶的要求,就會(huì)得到認(rèn)可,從而選擇與我們長(zhǎng)期合作。這樣,我們也可以走得更遠(yuǎn)!