-
Re: Is there a way to change the dump (header) for a dictionary ?
Replacing the Key/Value should be simple as long as you don't want to use spaces ( or other characters that C# does not allow in identifiers or start with a number) You can just use d.Select(e => …1 · -
Re: Close Excel File After execution
I don't think this is likely to related to LinqPad as the Util.ToSpreadsheet method does not use the same path or importItems so unlikely to interfere. It is more likely to be caused by LinqToExcelMo…1 · -
Re: Footer Sum ignores output formatting
I realise that this is a simple example just to illustrate your point, but most of the issues I have had with this have been resolved in Version 8.4 with the introduction of DumpOptions. See https://…1 · -
Re: CS1061 Issue
So what is G method? Either you are missing this method or it exists in another namespace that you haven't told Linqpad to use. I would guess this is an extension method which isn't in your My Extens…1 · -
Re: Disable auto scroll to input focus when changing tabs
Just FYI, your script does show the issue for me but only if I hide the editor. Which means the following also shows the issue "Top".Dump();Util.AutoScrollResults = true;var query = from i …1 ·