Пример #1
0
 private static void RunClassStaticActions()
 {
     var test = new ClassMapPerformanceTest();
     test.PerformanceIterations = PerformanceIterations;
     Console.WriteLine("Starting Class Static Actions");
     var stopwatch = Stopwatch.StartNew();
     test.FullUserToPartialUser_Actions();
     stopwatch.Stop();
     Console.WriteLine("Class Static Actions completed in: {0} ms", stopwatch.ElapsedMilliseconds);
 }