-
Re: Maintain a form across query executions
For anyone landing here. Joe's suggestion of WPF works great, however the WPF CefSharp browser has performance issues on high DPI machines. So the workaround is to use the CefSharp forms based browse… (View Post) -
Re: Sluggishness of UI after a while of F# REPL
Nothing to be sorry about. I'd be happy to run hundreds of tests. That's how much I'm hooked on Linqpad! Intellisense working like a treat again. Did some REPL'ing to try and see how performant thing… (View Post) -
DumpContainer Extension
I frequently find myself writing var dc = new DumpContainer(); dc.Dump; //somewhere elsedc.Content=MyObject; And it got me thinking that an extension would be super useful. So here is my first attemp… (View Post)