Hi Friends
Am getting following error on
StreamReader Output = process.StandardOutput;
the error is
StandardOut has not been redirected or the process hasn't started yet.
Please Can i get Solution ASAP
i've Googled and Added and then only i've Added this Code then also am getting Same Error Message
Regards....,
R.V.Rajagopalan
Loading

Rajagopalan R VPosted Apr 8, 2015, 7:44 AM
Thanks for your reply but i've used that too and then also then same error only coming ( and mentioned below also )
StandardOut has not been redirected or the process hasn't started yet.
Regards.....,
R.V.Rajagopalan
Nilay VishwakarmaPosted Apr 8, 2015, 7:07 AM
p.StartInfo.RedirectStandardOutput = false;
p.Start();
string output = p.StandardOutput.ReadToEnd();
p.WaitForExit();