C# bi-directional IPC over stdin and stdout - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T09:15:55Zhttp://stackoverflow.com/feeds/question/922233http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/922233/c-bi-directional-ipc-over-stdin-and-stdout1C# bi-directional IPC over stdin and stdoutKyle K2009-05-28T17:40:56Z2009-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 <-- stdin A <-- stdout B <--- Process B</p>
http://stackoverflow.com/questions/922233/c-bi-directional-ipc-over-stdin-and-stdout/922384#9223841Answer by fantius for C# bi-directional IPC over stdin and stdoutfantius2009-05-28T18:08:09Z2009-05-28T18:53:50Z<pre><code>using System;
using System.Diagnostics;
class Program
{
static void Main(string[] args)
{
string name;
if (args.Length > 0 && 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>