首页 > 代码库 > 程序C++ to C#交互
程序C++ to C#交互
第一次用C#调用C/C++生成的DLL文件,感觉有点新鲜,事实上仅仅是实现了执行在公共语言执行库 (CLR) 的控制之外的“非托管代码”(执行在公共语言执行库(CLR)的控制之中的代码码称为“托管代码“)的东西,如何运用在托管下的非托管呢?如今给感兴趣的刚開始学习的人简单地写一个实现的全过程吧(有什么问题千万别笑):
1.用VS2008选择其他语言(C++)创建一个控制台应用程序命名为Mydll1,然后选择应用程序类型为DLL,确定
项目如图:
在头文件 stdafx.h 下加入例如以下声明:
#define LIBEXPORT_API extern "C" __declspec(dllexport)
LIBEXPORT_API int Add(int a, int b);
LIBEXPORT_API int Add(int a, int b);
在MyDll.cpp中实现这个函数:
#include "stdafx.h"
int Add(int a,int b)
{
return a+b;
}
注意假设实现的方法是声明在其他头文件里的,一定要 加#include "xxx.h" 来引用这个声明了这个函数头文件。
生成MyDll.dll和MyDll.lib。
2.在Visual C# .net中引用dll文件
新建Visual C#控制台应用程序命名为TestImportDll;
将MyDll.dll和MyDll.lib复制到可运行文件文件夹下(如图):
在Praogram.cs中加入引用using System.Runtime.InteropServices;
按例如以下方式声明一个将要引用MyDll.dll中函数的类:
class test
{
//[DllImport("..\\..\\lib\\CppDemo.dll")]
//public static extern void Function();
//[DllImport("..\\..\\lib\\CppDemo.dll")]
//public static extern int Add(int i, int j);
[DllImport("..\\..\\Lib\\Mydll1.dll")]
public static extern int Add(int a, int b);
}
{
//[DllImport("..\\..\\lib\\CppDemo.dll")]
//public static extern void Function();
//[DllImport("..\\..\\lib\\CppDemo.dll")]
//public static extern int Add(int i, int j);
[DllImport("..\\..\\Lib\\Mydll1.dll")]
public static extern int Add(int a, int b);
}
最后在Main函数中调用这个类输出结果:
static void Main(string[] args)
{
Console.WriteLine("result: " + test.Add(2, 3).ToString());
Console.ReadLine();
}
{
Console.WriteLine("result: " + test.Add(2, 3).ToString());
Console.ReadLine();
}
以下是Program.cs的代码:
END(如图):
程序C++ to C#交互
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。