9 lines
220 B
C#
Raw Normal View History

2025-03-16 03:17:36 +08:00
namespace Seyounth.Core.Extensions;
public static class DateTimeExtensions
{
2025-03-20 21:54:41 +08:00
public static long ToTimestamp(this DateTime dateTime)
2025-03-16 03:17:36 +08:00
{
2025-03-20 21:54:41 +08:00
return new DateTimeOffset(dateTime).ToUnixTimeMilliseconds();
2025-03-16 03:17:36 +08:00
}
}