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 输出路径,设置方式如下:
右键项目->属性->属性配置->常规->输出目录。
原文地址:http://blog.51cto.com/loldlw/2115281
时间: 2024-11-04 05:10:18