How can I set up two external executables to run from a c# application where stdout from the first is routed to stdin from the second?
I know how to run external pro
You could use the System.Diagnostics.Process class to create the 2 external processes and stick the in and outs together via the StandardInput and StandardOutput properties.