英文:
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.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论