Bug - chart Dump descriptions are applied to future Dumps as well
Great product, just found a small bug. The Chart Dump is incorrectly being applied to everything dumped after it in this case.
void Main()
{
var a = new[] { 1, 2, 3 }
.Dump() // adding THIS dumb caused the bug. remove this and the errorous grouping goes away.
;
a.Chart().Dump("This desc should only be chart");
a.Dump("this is nested...");
a.Dump("this too.");
}
1
vote
Kenneth R.
shared this idea
Thanks - will fix in 7.4.3