Is it possible to programatically clear the results window?
Options
The program I am writing uses Console.WriteLine() and I want to clear the results after a certain condition.
Comments
-
You can use the built-in function:
Util.ClearResults();
-
Excellent thank you