-
Re: Why LINQPad generate different IL and C#1.0 result from sharplab.io
Press Alt+Shift+R - this will open the code in ILSpy and then you see the surrounding IL as well as choose the exact version of C# you want it lowered to.1 · -
Re: Output is randomly empty when using custom CSS
I've identified a race condition that can cause this and will have a fix out soon.1 · -
Re: Help needed with customizing Dump
If you have nullable reference types enabled, change IDictionary<string,object> to IDictionary<string,object?> to avoid the warning.2 · -
Re: Help needed with customizing Dump
For now, you can do the following (although you will lose the auto-graphing option): object ToDump(){ IDictionary<string, object> expando = Util.ToExpando (this, exclude: nameof (AsPercentage))…1 · -
Re: CoreWebView2 unavailable error
It might have been caused by an update to the shared Windows WebView2 installation. The latest beta detects when the WebView2 version changes, and creates a separate data folder, so that kind of prob…1 ·