Is there a way to create a second console to output to in .NET when writing a console application? - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T06:07:35Zhttp://stackoverflow.com/feeds/question/697227http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/697227/is-there-a-way-to-create-a-second-console-to-output-to-in-net-when-writing-a-con3Is there a way to create a second console to output to in .NET when writing a console application?Matze 2009-03-30T13:37:03Z2009-03-30T14:32:03Z
<p>Is there a way to create a second console to output to in .NET when writing a console application?</p>
http://stackoverflow.com/questions/697227/is-there-a-way-to-create-a-second-console-to-output-to-in-net-when-writing-a-con/697296#6972960Answer by Ólafur Waage for Is there a way to create a second console to output to in .NET when writing a console application?Ólafur Waage2009-03-30T13:52:27Z2009-03-30T13:52:27Z<p>A single console is attached to any given process. So in short you can not. But there are ways to "fake it"</p>
http://stackoverflow.com/questions/697227/is-there-a-way-to-create-a-second-console-to-output-to-in-net-when-writing-a-con/697388#6973887Answer by alexn for Is there a way to create a second console to output to in .NET when writing a console application?alexn2009-03-30T14:12:53Z2009-03-30T14:21:16Z<p>Well, you could start a new cmd.exe process and use stdio and stdout to send and recieve data. I'm coming up with an example.</p>
<pre><code>ProcessStartInfo psi = new ProcessStartInfo("cmd.exe")
{
RedirectStandardError = true,
RedirectStandardInput = true,
RedirectStandardOutput = true,
UseShellExecute = false
};
Process p = Process.Start(psi);
StreamWriter sw = p.StandardInput;
StreamReader sr = p.StandardOutput;
sw.WriteLine("Hello world!");
sr.Close();
</code></pre>
<p>More info on <a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.process.standardinput%28vs.71%29.aspx" rel="nofollow">MSDN</a>.</p>
http://stackoverflow.com/questions/697227/is-there-a-way-to-create-a-second-console-to-output-to-in-net-when-writing-a-con/697475#6974751Answer by Matrim for Is there a way to create a second console to output to in .NET when writing a console application?Matrim2009-03-30T14:32:03Z2009-03-30T14:32:03Z<p>Following fires of an application dependant number of console windows and stores the amount and parameters for the console inside a String Dictionary that is then loped to generate the required amount of spawned console apps. You would only need the process stuff if only spawning one of course.</p>
<pre><code>//Start looping dic recs and firing console
foreach (DictionaryEntry tests in steps)
{
try
{
Process runCmd = new Process();
runCmd.StartInfo.FileName = CONSOLE_NAME;
runCmd.StartInfo.UseShellExecute = true;
runCmd.StartInfo.RedirectStandardOutput = false;
runCmd.StartInfo.Arguments = tests.Value.ToString();
if (cbShowConsole.Checked)
{
runCmd.StartInfo.CreateNoWindow = true;
runCmd.StartInfo.WindowStyle = ProcessWindowStyle.Normal;
}
else
{
runCmd.StartInfo.CreateNoWindow = false;
runCmd.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
}
runCmd.Start();
}
catch (Exception ex)
{
string t1 = ex.Message;
}
}
</code></pre>
<p>Note this is intended either to run hidden(CreateNoWindow) or visible. </p>