c# 能调用windows api 吗?哪里查帮助啊!
c# 能调用windows api 吗?哪里查帮助啊! --------------------编程问答-------------------- 能调,参考如下:using System.Runtime.InteropServices;
[DllImport("kernel32.dll")]
internal static extern uint WinExec(string lpCmdLine, uint uCmdShow);
private const uint SW_SHOW = 5;
private void button1_Click(object sender, EventArgs e)
{
WinExec(@"c:\temp\temp.bin", SW_SHOW);
}
这个网站有很多常用api的.NET声明
http://www.pinvoke.net --------------------编程问答-------------------- 可以调用呀,声明如楼上所示!
补充:.NET技术 , C#