22
ProcessStartInfo tergantung pada "WaitForExit"? Mengapa?
Saya memiliki kode berikut: 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 Saya tahu bahwa output dari proses yang saya mulai sekitar 7MB. Menjalankannya di konsol Windows berfungsi dengan …
187
c#
processstartinfo