After declaring & starting a process as below:\[code\]System.Diagnostics.Process _p = new System.Diagnostics.Process();.............._p.Start();\[/code\]There are two possibilities now: Either an output or an error.In case an error happens, is there any property of \[code\]Process\[/code\] class by which to know if error occurred? I am redirecting the standard output, I don't want to redirect standard Error as warned in MSDN. Also I don't want to use: \[code\]BeginOutputReadLine();\[/code\] Are there any alternatives? Thank you.