22
ProcessStartInfo suspendu à «WaitForExit»? Pourquoi?
J'ai le code suivant: 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 Je sais que la sortie du processus que je commence est d'environ 7 Mo de long. L'exécuter …
187
c#
processstartinfo