Skip to content

Instantly share code, notes, and snippets.

@sebnilsson
Created October 25, 2016 10:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sebnilsson/78c3c62afa36159a693b0320c58dd625 to your computer and use it in GitHub Desktop.
Save sebnilsson/78c3c62afa36159a693b0320c58dd625 to your computer and use it in GitHub Desktop.
public static class DateTimeRfc3339Extensions
{
public static string ToRfc3339String(this DateTime dateTime)
{
string rfc3339 = dateTime.ToString("yyyy-MM-dd'T'HH:mm:ss.fffzzz", DateTimeFormatInfo.InvariantInfo);
return rfc3339;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment