-
Re: CompilationOptions ctor error when using Microsoft.CodeAnalysis - MissingMethodException
Microsoft.CodeAnalysis.CSharp.dll references System.Collections.Immutable 1.1.37.0, whereas the NuGet package includes v1.2.0.0 of the latter. You can verify this as follows:typeof (CSharpCompilation…1 · -
Re: Dump on a NameValueCollection
This is now fixed in the new beta: http://www.linqpad.net/download.aspx#beta1 · -
Re: Dumping in different panel
You could write an extension method in the 'My Extensions' query like this:public static T DumpX<T> (this T toDump, string panelName) { System.Windows.Forms.WebBrowser browser; TextWriter forma…4 · -
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 ·