TimeHelper.cs 259 B

12345678910111213
  1. using System;
  2. namespace Helper
  3. {
  4. public static class TimeHelper
  5. {
  6. public static long EpochTimeSecond()
  7. {
  8. var epoch = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc);
  9. return Convert.ToInt64((DateTime.UtcNow - epoch).TotalSeconds);
  10. }
  11. }
  12. }