-
Re: Alternate odd/even background color rows for Customing Dump Output
Or if you just want to activate this with specific queries:Util.RawHtml ("<style>tr:nth-child(even) {background:#f2f8ff}</style><style>tr:nth-child(odd) {background:#fff}</s…1 · -
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 ·