Example #1
0
 public static void LogExecutionTime <T>(Func <T> function)
 {
     TimeManagment.LogReturnValue(
         () =>
         TimeManagment.GetExecutionTime(function)
         );
 }
Example #2
0
 public static void LogExecutionTime(Action function)
 {
     TimeManagment.LogReturnValue(
         () =>
         TimeManagment.GetExecutionTime(function)
         , ShowOptions.SkipValues, new List <long>(new long[] { 0 }));
 }