37

I am making a console window RPG, yet I'm having problems clearing the entire console window. Is there a way for me to clear the entire console window with one command?

braX
  • 11,506
  • 5
  • 20
  • 33
zimooo2
  • 421
  • 1
  • 4
  • 9

1 Answers1

90

You can use the Clear() method:

Console.Clear();
keyboardP
  • 68,824
  • 13
  • 156
  • 205