博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
c# invoke c++
阅读量:4981 次
发布时间:2019-06-12

本文共 873 字,大约阅读时间需要 2 分钟。

using System;using System.Collections.Generic;using System.Text; namespace ConsoleApplication1{    class Program    {        static void Main(string[] args)        {            MessageBoxA(0,"Hello World!","My Message Box",0);            Console.WriteLine("Over");            Console.Read();        }         #region C++        [System.Runtime.InteropServices.DllImport("user32.dll")]        public static extern int MessageBoxA(                int b,                [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPStr)]string m,                [System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPStr)]string c,                int type            );        #endregion    }}

 P/Invoke Tutorial: Basics (Part 1):

可以从这里下载现成的开发结构。

转载于:https://www.cnblogs.com/hongjiumu/archive/2013/02/25/2932889.html

你可能感兴趣的文章
搭建SSI开发框架原理
查看>>
原版的WEB认证客户端,提供源代码,让用户自行编译
查看>>
小程序弹出框
查看>>
Scrapy框架基本使用
查看>>
RabbitMQ基础介绍
查看>>
关于过滤器,拦截器,监听器
查看>>
before和after
查看>>
[POJ2492]A Bug's Life
查看>>
[杂题]飞行员配对方案
查看>>
整理常用的iOS第三方资源
查看>>
RPD Volume 168 Issue 4 March 2016 评论1
查看>>
触发浏览器(reflow)的操作
查看>>
编程基础-回调
查看>>
ad如何从PCB中导出元件封装库
查看>>
常见安卓渠道分类
查看>>
华为如何打造智能终端的有趣灵魂?(上)
查看>>
Strapi 安装易错位置
查看>>
ASP.net:保护你的DLL和Code不被别人使用
查看>>
WPF下实现listview大图标效果
查看>>
CF219C hoosing Capital for Treeland
查看>>