C#调用windowAPI

using System.Runtime.InteropServices; //引用此名称空间,简化后面的代码
...
//使用DllImportAttribute特性来引入api函数,注意声明的是空方法,即方法体为空。
[DllImport("user32.dll")]
      public static extern ReturnType FunctionName(type arg1,type arg2,...);
      //调用时与调用其他方法并无区别

你可能感兴趣的:(C#调用windowAPI)