-
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 · -
Re: Debugger not stopping at breakpoint when there's an exception within a LINQ lambda.
This is a bug in the CLR. It was supposed to be fixed in .NET 6, but the target has now moved to .NET 7: https://github.com/dotnet/runtime/issues/44986 It might help to get extra feedback in this rep…1 ·