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

C#调用C++dll

时间:2014-11-17 13:58:37      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   使用   sp   div   2014   log   

1.添加命名空间  using System.Runtime.InteropServices;

2.dll的添加和函数的声明(注意一定要放在函数(方法)的外面)  

[DllImport("User32.dll")]
public static extern int MessageBox(int h, string m, string c, int type);

3.使用,在函数内添加

MessageBox(0, "我正在调用c++dll", "C#",0x30);    

4.结果:

bubuko.com,布布扣

C#调用C++dll

标签:style   blog   http   color   使用   sp   div   2014   log   

原文地址:http://www.cnblogs.com/lwngreat/p/4103397.html

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