mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-21 18:11:27 -07:00
13 lines
277 B
C#
13 lines
277 B
C#
using System;
|
|
|
|
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", App.CultureFormat);
|
|
}
|
|
}
|
|
}
|