Process.RedirectStandardOutput does not work
问题 I have a problem redirecting standard output of an application. It seems like this is some kind of bug in .NET. I'm running Live555ProxyServer but I don't get any output even when console which starts does have a written output. This code works with any other console application but not with this one. void StartProcess() { var process = new Process(); process.StartInfo.FileName = @"live555ProxyServer.exe"; process.StartInfo.Arguments = "-R"; process.StartInfo.UseShellExecute = false; process