22
ProcessStartInfo treo trên mạng WaitForExit '? Tại sao?
Tôi có đoạn mã sau: 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 Tôi biết rằng đầu ra từ quá trình tôi đang bắt đầu dài khoảng 7 MB. …
186
c#
processstartinfo