码迷,mamicode.com
首页 > 编程语言 > 详细

教你快速在c#中调用C++代码(函数)

时间:2015-11-11 20:51:20      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:c++   c#   dll   代码粘接   

之前写过一段C++的代码,想给他用C#写个界面,也就是想让这段代码在C#中可以运行。看了百度的很多方法,都说是封装成dll调用,但是按照步骤来总会出现各种错误,像以下的这种:

技术分享

并且迟迟不能解决,今天竟然有人跟我说直接把dll提取到C#工程的bin文件下就可以了,三观都毁了....尝试了一下,真的成功了,在这里把具体步骤和大家说一下,避免

在这种问题上浪费大量的时间。

首先,我们随便建立一个C++的工程(为了获取dll),将你打算在C#使用的函数用下面这种格式 extern "C" __declspec(dllexport) 封装一下:

#include <stdio.h>
#include <iostream>
#include <string.h>
#include <string>
using namespace std;

void output()
{
	cout << "hello world" << endl;
}
extern "C" __declspec(dllexport) int sum(int a, int b)
{
	output();
	return a + b;

}
然后右键点击工程名-->属性-->配置属性-->常规--->将配置类型改为dll

技术分享

然后编译,将与工程名同级的debug文件夹下的dll提取,放置C#工程bin文件-->debug下,运行即可。

技术分享

技术分享

加上包  和begin,end之间的代码,然后在主程序中直接调用函数即可。

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

using System.Runtime.InteropServices;// 要加上

namespace Csharp
{
    class Program
    {
         //  begin
          [DllImport("Tach.dll",
          EntryPoint = "sum",
          CharSet = CharSet.Ansi,
          CallingConvention = CallingConvention.StdCall)]
          public static extern int sum(int a,int b);
          //end  
    
          static void Main(string[] args)
          {
              int res = sum(1, 2);
              Console.WriteLine(res);
          }
    }
}

结果如图,成功运行!
技术分享


由于没有进行大量的测试,本方法可能存在问题(感觉和网上的都不一样.....),如果本方法有错误或者大家有更加好的方法,请在博客下留言,希望可以帮助到大家!



版权声明:本文为博主原创文章,未经博主允许不得转载。

教你快速在c#中调用C++代码(函数)

标签:c++   c#   dll   代码粘接   

原文地址:http://blog.csdn.net/nk_test/article/details/49785439

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!