-
Re: LINQPad hangs when editing script with errors with multiple cursors
I haven't been able to reproduce this, however there's a major rewrite in the works that's likely to help with editor performance. (View Post) -
Re: Understanding benchmark results
The range is (max - min) / mean. A bigger range means less consistency between test results - you can see this visually by the size of the red line in relation to the blue bar (which shows the mean).… (View Post) -
Re: Linqpad runs continuations on the same thread most of the time with TaskScheduler.Default
LINQPad doesn't do anything to mess with the task scheduler. As I understand, the asynchronous continuation option determines behavior. It makes no guarantees about which thread the continuation will… (View Post) -
Re: Is there a show filter drop-down menu?
The control is being redesigned in LINQPad, but it will a while before I will be able to release it. It's part of a fairly big rewrite. (View Post) -
Re: Array Indexes
There should be a fix for this in 8.4.3. LINQPad now shows C#-style indexers in type descriptions rather than Reflection-style indexers. typeof (int[,][]).Dump ("C# style");typeof (int[,][]… (View Post)