111,088
社区成员




ProcessStartInfo info = new ProcessStartInfo();
info.FileName = "TTPlayer.exe";
info.WorkingDirectory = @"C:\Program Files\TTPlayer";
Process p=Process.Start(info);
Console.WriteLine("进程ID:{0}\n进程名:
{1}",p.Id,p.ProcessName);
Process myProcess = new Process();
myProcess.StartInfo.FileName = "程序名(带完整路径的哦~)";
myProcess.StartInfo.CreateNoWindow = true;
myProcess.Start();