15 lines
304 B
C#
15 lines
304 B
C#
namespace System;
|
|
|
|
public static class SystemExtensions
|
|
{
|
|
public static string ToFormatted(this DateTime dateTime)
|
|
{
|
|
return dateTime.ToString("yyyy-MM-dd HH:mm:ss");
|
|
}
|
|
|
|
public static string ToFormatted(this DateOnly date)
|
|
{
|
|
return date.ToString("yyyy-MM-dd");
|
|
}
|
|
}
|