I have 2 applications.
One of them is console application, the other is normal form application – both written in C#. I want to open (hidden from view) the console application form the windows form application and be able to send a command lines to the console application.
How can i do that?
You can start the background process
and after that use the
Process.StandardOutputpropertyIf you want to send commands to this process, just use
Process.StandardInputProperty