-
Re: Objects displayed only as strings, not in grid/expandable
I've just released a new beta with an experimental feature to simplify customizing Dump output. Instead of implementing ICustomMemberProvider, write a private or public method called ToDump which ret…2 · -
Re: Objects displayed only as strings, not in grid/expandable
You're right - ICustomMemberProvider should take precedence over IFormattable. I've fixed that for the next build. In terms of making this easier, a custom attribute is certainly an option, although …1 · -
Re: Using LINQPad in a C# app
The purpose of the LINQPad nuget package is to use Util.CreateXHtmlWriter to leverage LINQPad's Dump functionality from outside LINQPad. To create a distributable app from a LINQPad query is not poss…1 · -
Re: LINQPad 5 beta & preprocessor directives
LINQPad 4 ignored preprocessor directives for the purposes of autocompletion, which solves the problem you describe, but causes problems of its own. For instance, in the following case:#if FOO string…1 · -
Re: Objects displayed only as strings, not in grid/expandable
I've answered the question on StackOverflow: http://stackoverflow.com/a/37935406/462231 ·