控制台进程是否会在没有窗口退出的情况下与我的程序一起运行?

发布于 2024-12-03 17:01:50 字数 238 浏览 0 评论 0原文

进程是否会以这些设置启动:

                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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

陌生 2024-12-10 17:01:51

不...它只能通过自行退出或被您的进程或其他进程或用户(例如通过任务管理器)杀死来终止 - 请参阅参考资料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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文