C#操作API函数

摘要:
作为一个初学者,在C#中使用API确实令人头疼。大多数API都可以传递和返回值。使用结构来操作具有结构的API要比使用简单的API复杂得多。第一步是打开C#创建一个Form项目,添加一个Button按钮,在代码窗口中输入以下代码,然后导入Namespace:usingSystem。运行时InteropServices;将结构声明为GetSystemInfo的参数:[StructLayout]publicstructSYSTEM_INFO{publicuintdwOemId;publicuintwPageSize;publicuindlpMinimumApplicationAddress;publicuiintlpMaximumApplicationAddress;public uintdwActiveProcessorMask;publicuientdwNumberOfProcessors;publicuinTwProcessorType;publicuidtwAllocationGranularity;publicuiltwProcessorLevel;publicuitdwProcessorRevision;}声明API函数:[DllImport]staticxternvoidGetSystemInfo;将以下代码添加到按钮单击事件处理中:首先创建SYSTEM_INFO结构并将其传递给GetSystemInfo函数。

作为初学者来说,在C#中使用API确是一件令人头疼的问题。在使用API之前你必须知道如何在C#中使用结构、类型转换、安全/不安全代码,可控/不可控代码等许多知识。
  一切从简单开始,复杂的大家一时不能接受。我们就从实现一个简单的MessageBox开始。首先打开VS.Net ,创建一个新的C#工程,并添加一个Button按钮。当这个按钮被点击,则显示一个MessageBox对话框。

即然我们需要引用外来库,所以必须导入一个Namespace

using System.Runtime.InteropServices;

接着添加下面的代码来声明一个API

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

此处DllImport属性被用来从不可控代码中调用一方法。”User32.dll”则设定了类库名。DllImport属性指定dll的位置,这个dll中包括调用的外部方法。Static修饰符则声明一个静态元素,而这个元素属于类型本身而不是上面指定的对象。extern则表示这个方法将在工程外部执行,使用DllImport导入的方法必须使用extern修饰符。
     MessageBox
则是函数名,拥有4个参数,其返回值为数字。
    
大多数的API都能传递并返回值。
    
添中Click点击事件代码:

  protected void button1_Click(object sender, System.EventArgs e)
{
MessageBox (0,"API Message Box","API Demo",0);
}

编译并运行这个程序,当你点击按钮后,你将会看到对话框,这便是你使用的API函数。
    使用结构体
   
操作带有结构体的API比使用简单的API要复杂的多。但是一旦你掌握了API的过程,那个整个API世界将在你的掌握之中。
   
下面的例子中我们将使用GetSystemInfo API 来获取整个系统的信息。
   
第一步还是打开C#建立一个Form工程,同样的添中一个Button按钮,在代码窗中输入下面的代码,导入Namespace

using System.Runtime.InteropServices;

声明一个结构体,它将作GetSystemInfo的一个参数

 [StructLayout(LayoutKind.Sequential)]

public struct SYSTEM_INFO

{

public uint dwOemId;
public uint dwPageSize;
public uint lpMinimumApplicationAddress;
public uint lpMaximumApplicationAddress;
public uint dwActiveProcessorMask;
public uint dwNumberOfProcessors;
public uint dwProcessorType;
public uint dwAllocationGranularity;
public uint dwProcessorLevel;
public uint dwProcessorRevision;
}

声明API函数:

[DllImport("kernel32")]
static extern void GetSystemInfo(ref SYSTEM_INFO pSI);

添加下面的代码至按钮的点击事件处理中:
首先创建一个SYSTEM_INFO结构体,并将其传递给GetSystemInfo函数。

 protected void button1_Click (object sender, System.EventArgs e)
{
   try
{
SYSTEM_INFO pSI = new SYSTEM_INFO();
GetSystemInfo(ref pSI);
//
//
//
 

//一旦你接收到返回的结构体,那么就可以以返回的参数来执行操作了。

 e.g.listBox1.InsertItem (0,pSI.dwActiveProcessorMask.ToString());:
//
//
//
}
     catch(Exception er)

     {
     MessageBox.Show (er.Message);
              }
 }

 //Created By Ajit Mungale


//程序补充  苍马之子

新建两个Form窗体:Mainform和about,在Mainform窗体中添加MenuStrip,然后添加子菜单abouttoolmenustrip,另外添加一个ListBox和Button。

using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Text;

using System.Windows.Forms;

using System.Runtime.InteropServices;

 

namespace WINAPI

{

    //Struct 收集系统信息

    [StructLayout(LayoutKind.Sequential)]

    public struct SYSTEM_INFO

    {

        public uint dwOemId;

        public uint dwPageSize;

        public uint lpMinimumApplicationAddress;

        public uint lpMaximumApplicationAddress;

        public uint dwActiveProcessorMask;

        public uint dwNumberOfProcessors;

        public uint dwProcessorType;

        public uint dwAllocationGranularity;

        public uint dwProcessorLevel;

        public uint dwProcessorRevision;

    }

    //struct 收集内存情况

    [StructLayout(LayoutKind.Sequential)]

    public struct MEMORYSTATUS

    {

        public uint dwLength;

        public uint dwMemoryLoad;

        public uint dwTotalPhys;

        public uint dwAvailPhys;

        public uint dwTotalPageFile;

        public uint dwAvailPageFile;

        public uint dwTotalVirtual;

        public uint dwAvailVirtual;

    }

 

 

    public partial class Form1 : Form

    {

        //获取系统信息

        [DllImport("kernel32")]

        static extern void GetSystemInfo(ref SYSTEM_INFO pSI);

        //获取内存信息

        [DllImport("kernel32")]

        static extern void GlobalMemoryStatus(ref MEMORYSTATUS buf);

        //处理器类型

        public const int PROCESSOR_INTEL_386 = 386;

        public const int PROCESSOR_INTEL_486 = 486;

        public const int PROCESSOR_INTEL_PENTIUM = 586;

        public const int PROCESSOR_MIPS_R4000 = 4000;

        public const int PROCESSOR_ALPHA_21064 = 21064;

 

        public Form1()

        {

            InitializeComponent();

        }

 

        private void aboutToolStripMenuItem_Click(object sender, EventArgs e)

        {

            Form abt = new about();

            abt.ShowDialog();

        }

 

        private void btn_display_Click(object sender, EventArgs e)

        {

            try

            {

                SYSTEM_INFO pSI = new SYSTEM_INFO();

                GetSystemInfo(ref pSI);

                string CPUType;

                switch (pSI.dwProcessorType)

                {

                    case PROCESSOR_INTEL_386:

                        CPUType = "Intel 386";

                        break;

                    case PROCESSOR_INTEL_486:

                        CPUType = "Intel 486";

                        break;

                    case PROCESSOR_INTEL_PENTIUM:

                        CPUType = "Intel Pentium";

                        break;

                    case PROCESSOR_MIPS_R4000:

                        CPUType = "MIPS R4000";

                        break;

                    case PROCESSOR_ALPHA_21064:

                        CPUType = "DEC Alpha 21064";

                        break;

                    default:

                        CPUType = "(unknown)";

                        break;

                }

                listBox1.Items.Add("Active Processor Mask :" + pSI.dwActiveProcessorMask.ToString());

                listBox1.Items.Add("Allocation Granularity :" + pSI.dwAllocationGranularity.ToString());

                listBox1.Items.Add("Number Of Processors :" + pSI.dwNumberOfProcessors.ToString());

                listBox1.Items.Add("OEM ID :" + pSI.dwOemId.ToString());

                listBox1.Items.Add("Page Size:" + pSI.dwPageSize.ToString());

                listBox1.Items.Add("Processor Level Value:" + pSI.dwProcessorLevel.ToString());

                listBox1.Items.Add("Processor Revision:" + pSI.dwProcessorRevision.ToString());

                listBox1.Items.Add("CPU type:" + CPUType);

                listBox1.Items.Add("Maximum Application Address: " + pSI.lpMaximumApplicationAddress.ToString());

                listBox1.Items.Add("Minimum Application Address:" + pSI.lpMinimumApplicationAddress.ToString());

                /************** GlobalMemoryStatus 获取返回值****************/

                MEMORYSTATUS memSt = new MEMORYSTATUS();

                GlobalMemoryStatus(ref memSt);

                listBox1.Items.Add("Available Page File :" + (memSt.dwAvailPageFile/1024).ToString());

                listBox1.Items.Add("Available Physical Memory : " + (memSt.dwAvailPhys/1024).ToString());

                listBox1.Items.Add("Available Virtual Memory:" + (memSt.dwAvailVirtual/1024).ToString());

                listBox1.Items.Add("Size of structur :" + memSt.dwLength.ToString());

                listBox1.Items.Add("Memory In Use :" + memSt.dwMemoryLoad.ToString());

                listBox1.Items.Add("Total Page Size :" + (memSt.dwTotalPageFile/1024).ToString());

                listBox1.Items.Add("Total Physical Memory :" + (memSt.dwTotalPhys/1024).ToString());

                listBox1.Items.Add("Total Virtual Memory :" + (memSt.dwTotalVirtual/1024).ToString());

            }

            catch (Exception er)

            {

                MessageBox.Show(er.Message);

            }

        }

    }

}

免责声明:文章转载自《C#操作API函数》仅用于学习参考。如对内容有疑问,请及时联系本站处理。

上篇《TCP原理》tinymce插件preview改造增加全屏按钮下篇

宿迁高防,2C2G15M,22元/月;香港BGP,2C5G5M,25元/月 雨云优惠码:MjYwNzM=

相关文章

如何在网中使用百度地图API自定义个性化地图

<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <...

《RESTful Web APIs中文版》

《RESTful Web APIs中文版》 基本信息 原书名:RESTful Web APIs 原出版社: O'Reilly Media 作者: Leonard Richardson Mike Amundsen 译者: 赵震一 李哲 出版社:电子工业出版社 ISBN:9787121231155 上架时间:2014-6-11 出版日期:2014 年6月 开本...

Laravel API 错误处理:当异常时,如何返回消息

Laravel API 错误处理:当异常时,如何返回消息 原文链接:learnku.com/laravel/t/3…讨论请前往专业的 Laravel 开发者论坛:learnku.com/Laravel    基于 API 的项目开发越来越受欢迎,并且使用 Laravel 就能很容易实现。但是在针对如何处理各种异常的话题很少被提及。所以 API 的使用者们...

YOURLS' API

YOURLS' API 特征 生成或获取现有的短URL,带有顺序关键字或自定义关键字获取一些关于你的链接的统计信息:点击链接,点击最少的链接,最新链接输出格式:JSON、XML或简单的原始文本Authentify或者用户名/密码或使用安全密码机制 Usage You need to send parameters to http://your-own-do...

单体架构、SOA、微服务

1、单体架构 2、单体架构的拆分 3、SOA与微服务的区别 4、微服务的优缺点 5、微服务的消息 6、服务集成 7、数据的去中心化 一、单体架构 Web应用程序发展的早期,大部分web工程是将所有的功能模块(service side)打包到一起并放在一个web容器中运行,很多企业的Java应用程序打包为war包。其他语言(Ruby,Python或者C++)...

Vue 3.2 刚刚发布!新的单文件组件,响应式性能大幅提升

今日凌晨,尤雨溪在微博平台官宣 Vue 3.2 已发布,并表示: <script setup> + TS + Volar = 真香 Vue 3.2 版本包括许多重要的新功能和性能改进,但并不包含重大更改。 新的单文件组件功能: <script setup> 是一种编译时语法糖,可在 SFC 内使用 Composition API...