gpt4 book ai didi

c# - 对其他应用程序进行同步调用

转载 作者:太空宇宙 更新时间:2023-11-03 11:49:39 25 4
gpt4 key购买 nike

我需要从我的代码调用其他程序。

我需要等到它完成(同步调用)。

我该怎么做?

非常感谢。

最佳答案

尝试使用 WaitForExit方法。

 Process p = new Process();
// Redirect the error stream of the child process.
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardError = true;
p.StartInfo.FileName = "OtherProgram.exe";
p.StartInfo.Arguments = "My Arguments";
p.Start();
// Wait for the child process to exit.
p.WaitForExit();

关于c# - 对其他应用程序进行同步调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2425738/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com