private static void InsertSet_WarmUp(InsertSetBenchmark b) { for (var i = 0; i < 100; i++) { b.Test(); } }
static void Main_InsertSet(string[] args) //static void Main(string[] args) { var b = new InsertSetBenchmark(); b.Setup(); InsertSet_WarmUp(b); InsertSet_Measure(b); }
private static void InsertSet_Measure(InsertSetBenchmark b) { b.Test(); }