在我的应用程序中,我通过命令`
启动了一个名为chrome的进程Process.Start(@"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe");
现在我要关闭当前流程。我应该编码什么才能关闭这个chrome应用程序。
答案 0 :(得分:0)
正如评论所指出的,只需在Kill()
返回的实例上调用Process.Start('...')
方法。
var myProcess = Process.Start(@"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe");
//Do your stuff...
myProcess.Kill();
另外,请查看MSDN关于(可能)更好的终止进程的方法:CloseMainWindow
。
修改强>
要杀死任意进程,请查看this问题。