Possible to clear the LINQPad results window with code?

Linqpad

Linqpad Problem Overview


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

Linqpad Solutions


Solution 1 - Linqpad

I've added a feature to do this

Util.ClearResults();

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionRay BooysenView Question on Stackoverflow
Solution 1 - LinqpadJoe AlbahariView Answer on Stackoverflow