mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-21 18:11:27 -07:00
11 lines
243 B
C#
11 lines
243 B
C#
namespace Bloxstrap.Extensions
|
|
{
|
|
static class DateTimeEx
|
|
{
|
|
public static string ToFriendlyString(this DateTime dateTime)
|
|
{
|
|
return dateTime.ToString("dddd, d MMMM yyyy 'at' h:mm:ss tt");
|
|
}
|
|
}
|
|
}
|