-
Re: CS7069 Reference to type 'Object' claims it is defined in 'System.Runtime', but it could not be foun
This shouldn't happen because LINQPad is designed to add that reference automatically. Looking at the NuGet package, it seems the 4.0-specific references are being added that shouldn't. You can fix t…1 · -
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 ·