码迷,mamicode.com
首页 > Windows程序 > 详细

extern外部方法使用C#简单例子

时间:2017-03-06 12:16:45      阅读:291      评论:0      收藏:0      [点我收藏+]

标签:ros   err   使用   ring   items   raw   lis   extern   key   

外部方法使用C#简单例子

1、增加引用using System.Runtime.InteropServices;

2、声明和实现的连接[DllImport("kernel32", SetLastError = true)]

3、声明外部方法public static extern int GetCurrentDirectory(int a, StringBuilder b);

4、对外部方法操作 GetCurrentDirectory(300, pathstring);

 

using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Linq;

using System.Text;

using System.Windows.Forms;

using System.Runtime.InteropServices;//引用外部

 

namespace extern

{

    public partial class DllImportForm : Form

    {

        public DllImportForm()

        {

            InitializeComponent();

        }

 

        [DllImport("kernel32", SetLastError = true)]//声明和实现的连接

        public static extern int GetCurrentDirectory(int a, StringBuilder b);//外部方法

        

        private void btnDisplay_Click(object sender, EventArgs e)

        {

            StringBuilder pathstring=new StringBuilder ();//返回路径

            GetCurrentDirectory(300, pathstring);

           this.listBox1.Items.Add (pathstring );

 

        }

    }

}

 

 

extern外部方法使用C#简单例子

标签:ros   err   使用   ring   items   raw   lis   extern   key   

原文地址:http://www.cnblogs.com/gyc19920704/p/6508663.html

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