C# bi-directional IPC over stdin and stdout - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T09:15:55Z http://stackoverflow.com/feeds/question/922233 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/922233/c-bi-directional-ipc-over-stdin-and-stdout 1 C# bi-directional IPC over stdin and stdout Kyle K 2009-05-28T17:40:56Z 2009-08-15T21:00:01Z <p>How can I connect two C# processes so they can communicate with each other over stdin and stdout?</p> <p>Like this:</p> <p>Process A --> stdout A --> stdin B ---> Process B</p> <p>Process A &lt;-- stdin A &lt;-- stdout B &lt;--- Process B</p> http://stackoverflow.com/questions/922233/c-bi-directional-ipc-over-stdin-and-stdout/922384#922384 1 Answer by fantius for C# bi-directional IPC over stdin and stdout fantius 2009-05-28T18:08:09Z 2009-05-28T18:53:50Z <pre><code>using System; using System.Diagnostics; class Program { static void Main(string[] args) { string name; if (args.Length &gt; 0 &amp;&amp; args[0] == "slave") { name = "slave"; } else { name = "master"; var info = new ProcessStartInfo(); info.FileName = "BidirConsole.exe"; info.Arguments = "slave"; info.RedirectStandardInput = true; info.RedirectStandardOutput = true; info.UseShellExecute = false; var other = Process.Start(info); Console.SetIn(other.StandardOutput); Console.SetOut(other.StandardInput); } Console.WriteLine(name + " started."); while (true) { var incoming = Console.ReadLine(); var outgoing = name + " got : " + incoming; Console.WriteLine(outgoing); System.Threading.Thread.Sleep(100); } } } </code></pre>