How can I dump something above previously dumped values?
Options
My goal is to push a new dumped value on top of previously dumped values in the results screen WITH the green description text.
Refreshing a dump container with a stack or similar that is being pushed to won't work, because I want that fancy green description text.
Any other means of doing this?
Comments
-
It sounds like you need a Util.WithHeading method, allowing the following:
var dc = new DumpContainer().Dump(); dc.Content = Util.VerticalRun (Util.WithHeading (Customers, "Customers"), Util.WithHeading (123, "test"));
Is this what you have in mind?
-
That code sample seems applicable, yes. It looks as though
Util.WithHeading
doesn't exist, yet.Thanks
-
I'll add this to the next build.
-
Epic. Thanks!