-
Re: Please don't remove standard window caption controls from dialogs (Minimize, Maximize, Close)
Regarding the NuGet package manager dialog, you're right: Given that it has a Close button, the title bar should also have close button, and given that it's resizable, the maximize button on the titl…1 · -
Re: LINQPad Controls don't call the ToDump methods of their children when dumped.
The simplest way to accomplish this to add the child controls to RangeControl's VisualTree: public RangeContainer (int value){ VisualTree.Add (range = new RangeControl (0, 100, value)); VisualTree.Ad…1 · -
Re: C# 10 in LINQPad?
This is now supported in the latest beta. Go to Edit | Preferences > Query and choose "Use Roslyn Daily build". After enabling, go to LINQPad's samples tab and expand the What's new in C…1 · -
Re: Timeouts instead of results one day after installing 6.14.10
The log reports indicate that the Edge Chromium engine (WebView2) wasn't responding. Let me know if the problem persists.1 · -
Re: Bug? Code-completion uses superfluous fully-qualified type-name for generic type parameter arguments
Perhaps it would be best to remove that code completion, given that its actually now redundant: Dictionary<String,FileInfo> dict = new(); // From C# 91 ·