Skip to content

Instantly share code, notes, and snippets.

@jskeet
Last active October 26, 2022 18:19
Show Gist options
  • Save jskeet/ae767e23814ef16e8adc5cbabc1d51ae to your computer and use it in GitHub Desktop.
Save jskeet/ae767e23814ef16e8adc5cbabc1d51ae to your computer and use it in GitHub Desktop.
using System;
using System.Globalization;
string text = "2020-10-14T13:11:51Z";
var dt = DateTime.ParseExact(text, "yyyy'-'MM'-'dd'T'hh':'mm':'ss'Z'", CultureInfo.InvariantCulture);
Console.WriteLine(dt);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment