C#中单例进程时如何启动多个进程(自己的程序)
我有循环并在循环中我的程序生成新进程,并且新进程是单例,因此其他进程无法启动
foreach (var i in files)
{
System.Diagnostics.Process.Start("c:\\Telock\\Telock.exe", " -S" + i.ToString());
}
如何在 1 完成后启动 2 并且...
i have loop and in loop my program spawn new process and new process is singleton so other process cant start
foreach (var i in files)
{
System.Diagnostics.Process.Start("c:\\Telock\\Telock.exe", " -S" + i.ToString());
}
how start 2 after 1 finish and ...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不在 MSDN 中查找 Process 类(毕竟,您正在使用它)?如果您这样做了,您就会找到
WaitForExit
方法。养成使用更具描述性的变量名称的习惯(
i
并没有真正说明任何内容,尤其是对于文件名而言)。Why don't you look up
Process
class in MSDN (after all, you ARE using it)? If you had done that, you would have found theWaitForExit
method.Take for habit to use more descriptive variable names (
i
doesn't really say anything, especially not for a filename).