How to clear the Console in c#.net? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T03:53:05Zhttp://stackoverflow.com/feeds/question/766173http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/766173/how-to-clear-the-console-in-c-net2How to clear the Console in c#.net?Peter2009-04-19T21:50:33Z2009-08-25T00:25:06Z
<p>Just that. I found a similar question here : <a href="http://stackoverflow.com/questions/377927/c-console-console-clear-problem">http://stackoverflow.com/questions/377927/c-console-console-clear-problem</a></p>
<p>but that didn't answer the question.</p>
<p>UPDATES : </p>
<p>Console.Clear() throws : IOException (The handle is invalid) </p>
<p>The app is a WPF app. Writing to the console however is no problem at all, nor is reading from.</p>
http://stackoverflow.com/questions/766173/how-to-clear-the-console-in-c-net/766175#7661752Answer by JaredPar for How to clear the Console in c#.net?JaredPar2009-04-19T21:52:21Z2009-04-20T02:12:47Z<p>Try</p>
<pre><code>Console.Clear();
</code></pre>
<p><strong>EDIT</strong></p>
<p>Are you trying this method on a non-Console application? If so that would explain the error. Other types of applications, ASP.Net projects, WinForms, etc ... don't actually create a console for writing. So the Clear has nothing to operate on and throws an exception. </p>
http://stackoverflow.com/questions/766173/how-to-clear-the-console-in-c-net/766177#7661772Answer by Andy White for How to clear the Console in c#.net?Andy White2009-04-19T21:52:35Z2009-04-19T21:52:35Z<p>Console.Clear() - this is the equivalent of the "cls" command.</p>
http://stackoverflow.com/questions/766173/how-to-clear-the-console-in-c-net/766178#7661783Answer by Andrew Hare for How to clear the Console in c#.net?Andrew Hare2009-04-19T21:52:42Z2009-04-19T21:52:42Z<p>Try <a href="http://msdn.microsoft.com/en-us/library/system.console.clear%28VS.80%29.aspx" rel="nofollow"><code>Console.Clear()</code></a> - it has been available since .NET 2.0.</p>
http://stackoverflow.com/questions/766173/how-to-clear-the-console-in-c-net/766230#7662300Answer by Judah Himango for How to clear the Console in c#.net?Judah Himango2009-04-19T22:15:08Z2009-04-19T22:15:08Z<p>Console.Clear() will do the trick. It should not throw an IOException. If it is, there's something else going on that you're not telling us, in which case you should show us some code.</p>
http://stackoverflow.com/questions/766173/how-to-clear-the-console-in-c-net/766250#7662502Answer by Martin for How to clear the Console in c#.net?Martin2009-04-19T22:24:35Z2009-04-19T23:03:41Z<p>Console.Clear() works in a console application.</p>
<p>When Calling Console.Clear() in a ASP.NET web site project or in a windows forms application, then you'll get the IOException.</p>
<p>What kind of application do you have?</p>
<p>Update:</p>
<p>I'm not sure if this will help, but as you can read in <a href="http://www.eggheadcafe.com/conversation.aspx?messageid=31733751&threadid=31733751" rel="nofollow">this forum thread</a>, Console.Clear() throws an IOException if the console output is being redirected. Maybe this is the case for WPF applications? The article describes how to check whether the console is being redirected.</p>
http://stackoverflow.com/questions/766173/how-to-clear-the-console-in-c-net/766693#7666930Answer by MichaC for How to clear the Console in c#.net?MichaC2009-04-20T02:42:46Z2009-04-20T02:42:46Z<p>Are you using some artificial means, like what is described <a href="http://stackoverflow.com/questions/160587/no-output-to-console-from-a-wpf-application">here</a> to display a console window? I tried creating a WPF application then changing the application output type in its properties Project-><em></em> Properties... to Console Application. Once I did that a console window popped up when I started my application and I could write to it and call Console.Clear() without any exceptions. (the basic idea is explained <a href="http://wpfwonderland.wordpress.com/2009/03/01/adding-console-window-to-wpf-application/" rel="nofollow">here</a>, although my properties UI was slightly different than what is described)</p>
http://stackoverflow.com/questions/766173/how-to-clear-the-console-in-c-net/1325467#13254670Answer by djangofan for How to clear the Console in c#.net?djangofan2009-08-25T00:25:06Z2009-08-25T00:25:06Z<p>Do you really need to clear it? You could also create your own "cls" command that prints out a 100 blank lines to the console and makes it "appear" to have cleared. just an idea.</p>