在SimpleExec中,使用Command.Run(),如何将返回值存储到变量中?

huangapple go评论67阅读模式
英文:

In SimpleExec, Command.Run(), how can I get return value into a variable

问题

我们正在使用SimpleExec进行.NET C#命令行构建。

大多数命令我们不需要检查返回值,但对于一些命令,我们需要。

我们运行类似这样的命令:

Run("git", "version");

在这些情况下,我们希望将这些命令的执行赋值给我们的C#应用程序中的一个变量。

英文:

We're using SimpleExec for .NET C# command line builds.

Most commands we don't need to inspect the return value, but for some we do.

We run commands like:

Run("git", "version");

and in these scenarios, we want to assign the execution of these commands into a variable in our C# app.

答案1

得分: 1

这里是要翻译的内容:

The readme in the Read section shows the ReadAsync method for reading the stdout and stderr.

英文:

The readme in the Read section shows the ReadAsync method for reading the stdout and stderr.

huangapple
  • 本文由 发表于 2023年6月15日 00:32:03
  • 转载请务必保留本文链接:https://go.coder-hub.com/76475747.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定