Skip to content

Instantly share code, notes, and snippets.

@Joruus
Created January 4, 2012 10:00
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 Joruus/1559390 to your computer and use it in GitHub Desktop.
Save Joruus/1559390 to your computer and use it in GitHub Desktop.
Conversión DateTime
DateTime dt;
string datetime = "120101";
DateTime.TryParseExact(datetime,
"yyMMdd",
CultureInfo.InvariantCulture,
DateTimeStyles.None,
out dt);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment