-
-
Notifications
You must be signed in to change notification settings - Fork 124
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Linqpad supports DumpContainer, which allows updating dumped data in the output window. Adding support for this would be convient for things like progress indicators.
For example:
var dump = new DumpContainer().Dump();
for(var i = 0; i <= 100; i++)
{
dump.Value = i;
Thread.Sleep(100);
}
Would output a single number which slowly goes from 0 to 100.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request