日期:2014-05-18 浏览次数:20799 次
Process newprocess = new Process(); newprocess.StartInfo.FileName = "calc.exe"; newprocess.Start();
------解决方案--------------------
Process newprocess = new Process();
newprocess.StartInfo.FileName = "calc.exe";
newprocess.Start();
------解决方案--------------------
System.Diagnostics.Process.Start("CALC.EXE");