Home

LINQPad 6 much slower compared to LINQPad 5

I've tried the following query on both LINQPad 5 and 6:

var re = new Regex("(?<=_)");
var input = "ab_ac_ad_ae_af_ag_";
re.Split(input).Dump();

In LINQPad 5, the results appear almost immediately; in LINQPad 6 the results take about 10 seconds to appear.

Comments

Sign In or Register to comment.