C# try catch块怎么没有捕捉到异常呢?System.InvalidOperationException

【字号: 日期:2023-07-21浏览:16作者:雯心

问题描述

C# try catch块怎么没有捕捉到异常呢?System.InvalidOperationException

nginxProc已经里头有异常了哈

问题解答

回答1:

进程里捕捉不到子进程异常的。

进程间的交互一般是通过 exitcode,stdout, stdin, stderr。复杂点的会有管道、Socket 等。

子进程的异常只能在子进程里处理,然后通过上面提到的方式传递出来,主进程去抓。

相关文章: