Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Possible to clear the LINQPad results window with code?

Tags:

linqpad

Using LINQPad, using the extension method Dump(), Console.WriteLine or Debug.Writeline, the values will appear in the results window.

Is there a way to clear this results window during the run of a linqpad script? As an example, I tried Console.Clear() however this throws an exception

like image 221
Ray Booysen Avatar asked Feb 07 '11 14:02

Ray Booysen


1 Answers

I've added a feature to do this

Util.ClearResults(); 
like image 172
Joe Albahari Avatar answered Sep 24 '22 08:09

Joe Albahari