22
ProcessStartInfo sospeso su "WaitForExit"? Perché?
Ho il codice seguente: 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 So che l'output del processo che sto iniziando è lungo circa 7 MB. Eseguendolo nella console di …
187
c#
processstartinfo