Is it possible to start a console application with the System.Diagnostics.Process , BUT so that it starts up and I can manually enter the data I need into the running console application? If so, how can this be done or where can I get information about it?
Roughly speaking, I need my program to open this console application in the same way as if I had started this console application myself and started working with it further.
Process myProcess = new Process(); myProcess.StartInfo.UseShellExecute = false; myProcess.StartInfo.FileName = "objectmaker\\objectmarker.exe"; myProcess.StartInfo.CreateNoWindow = false; myProcess.Start();
Process myProcess = new Process(); myProcess.StartInfo.FileName = "objectmaker\\objectmarker.exe"; myProcess.StartInfo.CreateNoWindow = false; myProcess.Start();- Simon Barkovsky pm