TimeUtils.cs 474 B

12345678910111213141516
  1. using System.Diagnostics;
  2. namespace AipGateway.AIP.Service.Utils
  3. {
  4. public static class TimeUtils
  5. {
  6. public static long GetElapsedMilliseconds(long start, long stop)
  7. {
  8. return (long)((stop - start) * 1000 / (double)Stopwatch.Frequency);
  9. }
  10. public static long GetElapsedMilliseconds(long start)
  11. {
  12. return (long)((Stopwatch.GetTimestamp() - start) * 1000 / (double)Stopwatch.Frequency);
  13. }
  14. }
  15. }