VS2017 C# 调用C++ DLL

工具介绍

  • 工具VS 2017
  • C++建立DLL文件
    VS2017和之前的版本有所不同,通过在网上查找资料借鉴 完成一个简单的DLL

步骤一, 建立DLL文件

  • 选择Windows左面——>动态链接库(DLL)图一
  • 文件目录
    在这里插入图片描述
  • 在stdafx.h头文件中,定义自己的头文件,注意一定要注意C++的命名规范,否则会造成一些问题
    在这里插入图片描述
  • 在头文件夹下,建立一个新的头文件TestMyDll.h, 并在TestMyDll.h文件中声明方法(或函数)
#pragma once

extern "C" _declspec(dllexport) int __stdcall  AddNum(int a, int b);
  • 在源文件夹下,cpp程序TestMyDll.cpp中,实现方法
#include "stdafx.h"

int __stdcall  AddNum(int a, int b) {


	return a + b;
}
  • F6、F5生成DLL文件,此时会报错,但并不影响
    在这里插入图片描述
    打开DLL目录所在文件夹,备份DLL文件
    在这里插入图片描述

步骤二 新建C# 工程项目

在C#中建立一个控制台程序,并将备份好的DLL文件复制到程序的bin/debug目录下
在这里插入图片描述

namespace ConsleTestDll
{
    class Program
    {
        [DllImport(@"TestMyDll.dll", EntryPoint = "AddNum", SetLastError = true, CharSet = CharSet.Ansi, ExactSpelling = false, CallingConvention = CallingConvention.StdCall)]
        public extern static int AddNum(int a,int b);

        static void Main(string[] args)
        {
            int sum = AddNum(30, 40);
            Console.WriteLine("{0}",sum);
            Console.ReadKey();
        }
    }
}

步骤三 运行调试,C#调用成功

在这里插入图片描述

CSharp 调用C++ DLL; 参数为指针类型导出函数 c# Csharp调用 c++库 参数为导入和导出指针两种 包含C++ DLL源码 如fun(cont char* A,char*B) A为输入参数,B为输出参数-C# CSharp call C++ DLL lib dll function param use export and import eg: fun(cont char* A,char*B) A IN,B OUT TestDll\Debug\TestCallDll.exe .......\.....\TestCallDll.vshost.exe .......\.....\TestCallDll.vshost.exe.manifest .......\.....\TestDll.dll .......\.....\TestDll.lib .......\TestCallDll\Form1.cs .......\...........\Form1.Designer.cs .......\...........\Form1.resx .......\...........\obj\Debug\TestCallDll.csproj.FileListAbsolute.txt .......\...........\...\.....\TestCallDll.csproj.GenerateResource.Cache .......\...........\...\.....\TestCallDll.exe .......\...........\...\.....\TestCallDll.Form1.resources .......\...........\...\.....\TestCallDll.pdb .......\...........\...\.....\TestCallDll.Properties.Resources.resources .......\...........\Program.cs .......\...........\...perties\AssemblyInfo.cs .......\...........\..........\Resources.Designer.cs .......\...........\..........\Resources.resx .......\...........\..........\Settings.Designer.cs .......\...........\..........\Settings.settings .......\...........\TestCallDll.csproj .......\....Dll\dllmain.cpp .......\.......\ReadMe.txt .......\.......\stdafx.cpp .......\.......\stdafx.h .......\.......\targetver.h .......\.......\TestDll.cpp .......\.......\TestDll.def .......\.......\TestDll.h .......\.......\TestDll.vcproj .......\.......\TestDll.vcproj.PC-201008261742.Administrator.user .......\TestDll.sln .......\TestDll.suo .......\....CallDll\obj\Debug\TempPE .......\...........\...\Debug .......\...........\obj .......\...........\Properties .......\Debug .......\TestCallDll .......\TestDll TestDll
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值