C#调用C++的dll文件

以加法为例,讲解该过程

首先我们介绍一下原理:

C#与C++的转换会经过以下几层转换 

1. C# APP

2. C#接口类:C#数据 -> 纯C数据结果包装

3. C接口包装:纯C数据 -> C++输入

4. C++实现:C++处理


接下来我们介绍一下具体实现方法:

首先建立一个C#项目


文件--添加新建项目--Win32 控制台应用程序--AdderImpl


源文件--右键添加cpp文件

// the code is write in c
#ifdef __cplusplus
extern "C"{
#endif

	__declspec(dllexport) int __cdecl add(int a, int b);


#ifdef __cplusplus
}
#endif

int add(int a, int b)
{
	return a + b;
}

AdderImpl项目修改配置类型为动态库(.dll)


AdderImpl右键--生成


把该dll文件复制到



在testApp2右键--添加新建项--C#类--AdderWapper.cs


其中AdderWapper.cs中代码为:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Runtime.InteropServices;

namespace TestApp
{
    class AdderWapper
    {
        [DllImport("AdderImpl.dll", CallingConvention = CallingConvention.Cdecl)]
        static extern private int add(int a, int b);

        static public int performAdd(int a, int b)
        {
            // convert c# data to c data
            // TODO:


            // call the c interface
            int ret = add(a, b);

            // convert result from c data to c# data
            // TODO:

            // return the result
            return ret;
        }
    }
}

Program.cs中代码为:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;


namespace TestApp
{
    class Program
    {
        static void Main(string[] args)
        {

            int a = 3; int b = 5;
            int c = AdderWapper.performAdd(a, b);

            System.Console.WriteLine(c);
        }
    }
}

生成,也就是让dll和exe在同一文件夹下


命令行运行exe文件



end

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值