我目前正在通过我的 C# 应用程序编译 C 程序。如果 gcc 输出任何内容,则表示出现错误。我想检索此错误并将其显示给用户。
目前,我正在这样做...
var proc = new Process
{
StartInfo = new ProcessStartInfo
{
FileName = _cCompilerPath,
Arguments = " ./file.c",
UseShellExecute = false,
RedirectStandardOutput = true,
CreateNoWindow = true
}
};
proc.Start();
string message = string.Empty;
while (!proc.StandardOutput.EndOfStream)
{
string line = proc.StandardOutput.ReadLine();
message = string.Concat(message, line);
}
MessageBox.Show("OUTPUT :" + message);
但即使程序中出现错误,也不会重定向到标准输出,并且 EndOfStream 始终返回 true。