How do I redirect the input and output of a console C# program to a socket? I need to start the program from within another process, and make it receive input and emit output to another process running on another computer in the network. What I'm trying to do is to programmatically run an application on another station, while controlling it from the current terminal.
|
|
Use the
And then you can hook any stream (including networkstreams) up to |
||
|
|
|
You'll need to setup ProcessStartInfo.RedirectStandardInput and RedirectStandardOutput. This lets you provide a stream to use for standard input/output of the console application. You can then copy data from the process streams to and from the socket's stream. |
||
|
|
|
Why redirect? If this is core functionality of your application, then you should have The stream can be opened from a socket, a file, whatever right in code. |
||
|

netcatmight help: netcat.sourceforge.net – Mehrdad Afshari Nov 5 at 19:45