等到一个进程结束
问题描述:
我有一个应用程序
Process.Start()
启动另一个应用程序ABC".我想等到该应用程序结束(进程终止)并继续执行.我该怎么做?
to start another application 'ABC'. I want to wait till that application ends (process dies) and continue my execution. How can I do it?
可能有多个应用程序 'ABC' 实例同时运行.
There may be multiple instances of the application 'ABC' running at the same time.
答
我想你只是想要这个:
var process = Process.Start(...);
process.WaitForExit();
有关方法,请参阅 MSDN 页面.它还有一个重载,您可以在其中指定超时,因此您不会永远等待.
See the MSDN page for the method. It also has an overload where you can specify the timeout, so you're not potentially waiting forever.