-
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 · -
Re: Dump is not working as expected
Config is stored in %appdata%\LINQPad and %localappdata%\LINQPad You won't lose anything by re-installing. It might also help to re-install .NET Framework. Cleaning out the config might also be worth…1 · -
Re: Example of OxyPlot.Wpf renders blank
There's some dodgy code in OxyPlot.Wpf. In PlotViewBase: private bool IsInVisualTree(){ DependencyObject dependencyObject = this; while ((dependencyObject = VisualTreeHelper.GetParent(dependencyObjec…1 ·