-
Re: [Feature] Add additional package links in the LINQPad NuGet Manager
These are good suggestions; some should make into a build in the next month or two. (View Post) -
Re: Can I change the output data style so that a comma appears when the data is a number?
You need to add a static ToDump method to your query to intercept the Dump pipeline: static object ToDump (object input){ if (input is int or long) return $"{input:N0}"; if (input is float … (View Post) -
Re: Activate LINQPad in (really) silent mode
If activation is successful, LINQPad will create the following file: %localappdata%\linqpad\license.xml Note that the file doesn't actually contain the license - it's just an indication that activati… (View Post) -
Re: Activate LINQPad in (really) silent mode
There's no way to do this right now - it would require activation support via LPRun. (View Post) -
Re: Util.Cleanup doesn't seem to be getting executed
Util.Cleanup is fired between query executions, but not on cancellation. To subscribe to cancellation use this.QueryCancelToken.Register(...) (View Post)