mirror of
https://github.com/fergalmoran/podnoms.git
synced 2025-12-23 01:40:26 +00:00
13 lines
348 B
C#
13 lines
348 B
C#
using System;
|
|
|
|
namespace PodNoms.Api.Utils.Extensions
|
|
{
|
|
|
|
public static class DateTimeExtensions {
|
|
public static string ToRFC822String (this DateTime datetime) {
|
|
return datetime.ToString ("ddd',' d MMM yyyy HH':'mm':'ss") +
|
|
" " +
|
|
datetime.ToString ("zzzz").Replace (":", "");
|
|
}
|
|
}
|
|
} |