1
0
mirror of synced 2025-01-18 14:24:02 +01:00

14 lines
315 B
C#
Raw Normal View History

namespace Application.Common.Helpers;
public static class TimeHelper
{
public static string CurrentTimeToString()
{
2023-02-16 15:26:13 +08:00
return DateTime.Now.ToString("yyyy/MM/dd hh:mm:ss");
}
public static string DateToString(DateTime time)
{
2023-02-16 15:26:13 +08:00
return time.ToString("yyyy/MM/dd hh:mm:ss");
}
}