-
Re: LINQPad 7 F# 6 Support
F# 6 is in today's beta: https://www.linqpad.net/linqpad7.aspx#beta Let me know how you get on.2 · -
Re: [LINQPAD 6-7] Edge Chromium Engine : Images should not be cached with `Util.Image()`
Thanks - I'll get a fix into the next build. In the meantime, you can work around it as follows: string urlPng = @$"file:///{png.Replace ('\\', '/')}?v={DateTime.Now.Ticks}";1 · -
Re: Can't seem to get LoadLibraryA or LoadLibraryW to work in Linqpad 5 or 6
Your import for LoadLibraryW looks wrong: the parameter should be UnmanagedType.LPWStr. Also, in LINQPad 6, you might want to check out .NET Core's NativeLibrary.Load function.1 · -
Re: LINQPad 7 is now available!
Yes, of course you can. When you purchase a LINQPad license, it works for all past versions, as well. (As you say, .NET Framework will be around for a while, and so LINQPad 5 will not disappear.)2 · -
Re: [Bug] WebView2 on wpf does not render
WPF elements auto-size and stack when you dump them, so with this control (which doesn't have a minimum size) you either have to put it in a DockPanel, or call the following method to Dump it: PanelM…1 ·