获取进程的返回值
您好,我正在尝试执行以下操作: 我有一个可以接受参数(数字)的过程 并返回这些数字的总和
Process P = Process.Start(sPhysicalFilePath, Param);
int result = P.ExitCode;
我从“ExitCode”获得返回值 问题是: 程序有时会在进程之前完成其工作 所以当程序到达这一行时
int result = P.ExitCode;
我得到了一个异常.. 我的问题是如何等待这个过程直到它完成工作 抱歉,我忘了说我正在使用 C# 语言
Hi I am trying to do the following:
I have a process which can take parameters (digits)
and return the sum of these numbers
Process P = Process.Start(sPhysicalFilePath, Param);
int result = P.ExitCode;
I get the return value from "ExitCode"
the problem is:
the program sometimes finishes his work before the process
so when the program reaches this line
int result = P.ExitCode;
I got an exception ..
my question is how to wait this process until it finishes its work
sorry I forget to say that's I am working with C# language
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用:
来自 MSDN
use:
from MSDN
您可以尝试下面的代码:
希望这有帮助:)
You can try the below code:
Hope this helps :)