BaseStopwatch.cs 226 B

123456789101112
  1. using System;
  2. namespace Common.Stopwatch
  3. {
  4. public class BaseStopwatch
  5. {
  6. protected static string Stopwatch(Action function)
  7. {
  8. return StopwatchHelper.Stopwatch(function);
  9. }
  10. }
  11. }