欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

extern外部方法使用C#的實(shí)現(xiàn)方法

 更新時(shí)間:2014年12月24日 15:02:25   投稿:shichen2014  
這篇文章主要介紹了extern外部方法使用C#的實(shí)現(xiàn)方法,較為詳細(xì)的分析了外部方法使用C#的具體步驟與實(shí)現(xiàn)技巧,具有一定的參考借鑒價(jià)值,需要的朋友可以參考下

本文實(shí)例講述了extern外部方法使用C#的方法。分享給大家供大家參考。具體分析如下:

外部方法使用C#步驟如下:

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

2、聲明和實(shí)現(xiàn)的連接[DllImport("kernel32", SetLastError = true)]

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

4、對(duì)外部方法操作 GetCurrentDirectory(300, pathstring);

具體實(shí)現(xiàn)代碼如下:

復(fù)制代碼 代碼如下:
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)]//聲明和實(shí)現(xiàn)的連接
        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 );
 
        }
    }
}

希望本文所述對(duì)大家的C#程序設(shè)計(jì)有所幫助。

相關(guān)文章

最新評(píng)論