控制台进程是否会在没有窗口退出的情况下与我的程序一起运行?
进程是否会以这些设置启动:
p.StartInfo.UseShellExecute = false;
p.StartInfo.CreateNoWindow = true;
p.StartInfo.RedirectStandardOutput = true;
当我的程序关闭时关闭?或崩溃?就此而言?
will a process started with these settings:
p.StartInfo.UseShellExecute = false;
p.StartInfo.CreateNoWindow = true;
p.StartInfo.RedirectStandardOutput = true;
close when my program closes? or crashes? for that matter?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不...它只能通过自行退出或被您的进程或其他进程或用户(例如通过任务管理器)杀死来终止 - 请参阅参考资料http://msdn.microsoft.com/en-us/library/system.diagnostics.process.aspx
No... it only terminates either by exiting itself or being killed either by your process or some other process or by the user (for example via Task Manager) - see for reference http://msdn.microsoft.com/en-us/library/system.diagnostics.process.aspx