How to clear the immediate window in Visual Studio 2019?

less than 1 minute read

What is the use of an immediate window? It is used to debug and evaluate expressions, execute statements, and print variable values.

How to clear the immediate window?

>cls

It will clear your immediate window entire results.

Screenshots:

Open immediate window in Visual studio 2019
Immediate window with logs
Immediate window is cleared now

Leave a comment