-
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 …1 · -
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…1 · -
Re: Activate LINQPad in (really) silent mode
There's no way to do this right now - it would require activation support via LPRun.1 · -
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(...)1 · -
Re: Compile LINQPad query (under C# Program-mode) into a standalone dll
Have you tried LINQPadless? https://github.com/atifaziz/LinqPadless1 ·