-
Re: Alternate odd/even background color rows for Customing Dump Output
There's an easier way: go to Edit | Preferences | Results > Style Sheet = custom, and add the following customizations:tr:nth-child(even) {background:#f2f8ff} tr:nth-child(odd) {background:#fff}1 · -
Re: NuGet problem (net471 profile)
Thanks - will fix for next build.1 · -
Re: option to include headers when copying values from data grids
This is now available in the latest beta: http://www.linqpad.net/download.aspx#beta1 · -
Re: Very beginer level __ User input __
In LINQPad, there is also a convenient shortcut for this:var n = Util.ReadLine<int> ("How many numbers?"); n.Dump();2 · -
Re: Group multiple dump outputs
You could write something like this in My Extensions: http://share.linqpad.net/nqj4r2.linq1 ·