mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-16 02:01:29 -07:00
11 lines
273 B
C#
11 lines
273 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", CultureInfo.InvariantCulture);
|
|
}
|
|
}
|
|
}
|