1
0
Files
mineplex-crepe/Website/LOC.Core/TimeUtil.cs

15 lines
350 B
C#
Raw Normal View History

2021-08-19 16:35:32 +07:00
namespace LOC.Core
{
using System;
public static class TimeUtil
{
public static double GetCurrentMilliseconds()
{
var staticDate = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc);
var timeSpan = DateTime.UtcNow - staticDate;
return timeSpan.TotalMilliseconds;
}
}
}