获取进程的返回值

发布于 2024-08-08 17:32:22 字数 341 浏览 1 评论 0原文

您好,我正在尝试执行以下操作: 我有一个可以接受参数(数字)的过程 并返回这些数字的总和

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

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

发布评论

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

评论(2

快乐很简单 2024-08-15 17:32:22

使用:

Process P = Process.Start(sPhysicalFilePath, Param);
P.WaitForExit();
int result = P.ExitCode;

来自 MSDN

use:

Process P = Process.Start(sPhysicalFilePath, Param);
P.WaitForExit();
int result = P.ExitCode;

from MSDN

ㄟ。诗瑗 2024-08-15 17:32:22

您可以尝试下面的代码:

    Dim P As New Process
    P = Process.Start(info)
    P.WaitForExit()
    fichiersATraiter = P.ExitCode

希望这有帮助:)

You can try the below code:

    Dim P As New Process
    P = Process.Start(info)
    P.WaitForExit()
    fichiersATraiter = P.ExitCode

Hope this helps :)

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