How to clear the Console in c#.net? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T03:53:05Z http://stackoverflow.com/feeds/question/766173 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/766173/how-to-clear-the-console-in-c-net 2 How to clear the Console in c#.net? Peter 2009-04-19T21:50:33Z 2009-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#766175 2 Answer by JaredPar for How to clear the Console in c#.net? JaredPar 2009-04-19T21:52:21Z 2009-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#766177 2 Answer by Andy White for How to clear the Console in c#.net? Andy White 2009-04-19T21:52:35Z 2009-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#766178 3 Answer by Andrew Hare for How to clear the Console in c#.net? Andrew Hare 2009-04-19T21:52:42Z 2009-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#766230 0 Answer by Judah Himango for How to clear the Console in c#.net? Judah Himango 2009-04-19T22:15:08Z 2009-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#766250 2 Answer by Martin for How to clear the Console in c#.net? Martin 2009-04-19T22:24:35Z 2009-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&amp;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#766693 0 Answer by MichaC for How to clear the Console in c#.net? MichaC 2009-04-20T02:42:46Z 2009-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#1325467 0 Answer by djangofan for How to clear the Console in c#.net? djangofan 2009-08-25T00:25:06Z 2009-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>