-
Re: LINQPad seems to ignore <remarks> and <exception> tags in documentation comments
Will add exception tag support in LINQPad 8. Remarks tags can get pretty long so I don't know how well this will work with tooltips unless truncated. Note that there are no remarks tags in the .NET r… (View Post) -
Re: BUG? Preprocessor directive LINQPAD
@JohnGoldsmith thanks: will fix this in the next LINQPad 5 build. (View Post) -
Dropping support for .NET Core 3.1 and .NET 5
Is anyone still using these runtimes? I'd like to drop support for these in LINQPad 8. (View Post) -
Re: Moving passwords.
There is no export/import feature - you would have to write this yourself. If you want to go down this path, press Shift+Alt+R to bring up ILSpy, then take a look at LINQPad's PasswordManager class -… (View Post) -
Re: Process file not found?
What's the value of w? Note that if it's not an executable, you must invoke it like this in .NET Core: Process.Start (new ProcessStartInfo (target) { UseShellExecute = true }) (View Post)