J
Juan Gabriel Del Cid
Process.Start(StartInfo); //line 12
Um... in line 12 you get the actual process that was created. Store that
reference in Rprocess. In other words, change line 12 to:
Rprocess = Process.Start(StartInfo);
That should work,
-JG
R_Input = Rprocess.StandardInput; //ine 13
I can see the process start correctly after line 12 (it appears
in the Windows Task Manager, and a console starts up).
But line 13 always raises the exception:
"StandardIn has not been redirected."
Um... in line 12 you get the actual process that was created. Store that
reference in Rprocess. In other words, change line 12 to:
Rprocess = Process.Start(StartInfo);
That should work,
-JG