DumpLatest - highligh differences after dump refresh.
Add to DumpLatest option similar to what 'watch' command does with flag '--differences'.
This would allow nice&easy visual monitoring of changes in any data.
I use for example code like this to visually monitor changes in DB:
Observable.Interval( System.TimeSpan.FromSeconds(2) )
.Select(x => this.GetSomeDBTable )
.DumpLatest();
Having any changes in dump output highlighted with for example yellow background would be nice.
6
votes
Martin Dobroucký
shared this idea
-
ChrisF commented
LinqPad has all the components needed to create such a thing if you implement the diff yourself.
See LINQPad.Util.HighlightIf() specifically.