-
Re: Can I change the output data style so that a comma appears when the data is a number?
Try the latest beta: https://www.linqpad.net/linqpad7.aspx#beta There are now options in Edit | Preferences to include group separators in numbers without needing to write a ToDump method. It also ap…2 · -
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.1 · -
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 ·