show/hide this revision's text 2 added 291 characters in body

Try

Console.Clear();

EDIT

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.

show/hide this revision's text 1

Try

Console.Clear();