static void TestCodeGen(Customer item, int iterations, ref double counter) { var time = Loop(item, get => CustomerMapper.Map(get), iterations); Console.WriteLine("Codegen:\t\t" + time); counter += time; }
public static void TestCodeGen(Customer item, int iterations) { Loop(item, get => CustomerMapper.Map(get), iterations); }