22
ProcessStartInfo hängt an "WaitForExit"? Warum?
Ich habe folgenden Code: info = new System.Diagnostics.ProcessStartInfo("TheProgram.exe", String.Join(" ", args)); info.CreateNoWindow = true; info.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden; info.RedirectStandardOutput = true; info.UseShellExecute = false; System.Diagnostics.Process p = System.Diagnostics.Process.Start(info); p.WaitForExit(); Console.WriteLine(p.StandardOutput.ReadToEnd()); //need the StandardOutput contents Ich weiß, dass die Ausgabe des Prozesses, den ich starte, ungefähr 7 MB lang ist. Das Ausführen …
186
c#
processstartinfo