有两种方式:
1.等待进程退出,会阻塞当前线程
Process.WaitForExit
2.使用Event,注册进程退出事件
Process.EnableRaisingEvents = true;
Process.Exited += new EventHandler(WorkerExited);本文共 202 字,大约阅读时间需要 1 分钟。
有两种方式:
1.等待进程退出,会阻塞当前线程
Process.WaitForExit
2.使用Event,注册进程退出事件
Process.EnableRaisingEvents = true;
Process.Exited += new EventHandler(WorkerExited);转载于:https://www.cnblogs.com/aoun/p/4979784.html