mirror of
https://github.com/fergalmoran/radio-otherway.git
synced 2025-12-22 09:50:29 +00:00
7 lines
236 B
C#
7 lines
236 B
C#
namespace OtherWay.Radio.Scheduler.Services.Extensions;
|
|
|
|
public static class DateTimeExtensions {
|
|
public static string ToLongDateTimeString(this DateTime date) {
|
|
return $"{date.ToLongDateString()} {date.ToLongTimeString()}";
|
|
}
|
|
} |