c#运行命令(cmd,notepad,calc..)
System.Diagnostics.Process.Start("Calc");//打开计算器 本帖最后由 C0427 于 2014-2-5 07:03 编辑新建一个控制台应用程序using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
System.Diagnostics.Process.Start("Calc");//打开计算器
}
}
}
谢谢发教程{:2_27:} :D好东西,如果在打开CMD程序后,想用PING指令,PING一个IP地址的话,能否一起自动输入并打开的?!
页:
[1]