Skip to content

Instantly share code, notes, and snippets.

@binki
Created March 1, 2018 16:00
Show Gist options
  • Save binki/bcb521b9583da8b943e83e4b0addeaaf to your computer and use it in GitHub Desktop.
Save binki/bcb521b9583da8b943e83e4b0addeaaf to your computer and use it in GitHub Desktop.

lol, only Canada is sane xD

foreach (var cultureSlug in new[] {
"en-us",
"en-gb",
"en-ca",
"ja-jp",
}) {
var culture = System.Globalization.CultureInfo.GetCultureInfo(cultureSlug);
Console.WriteLine($"{culture}: {new DateTime(1968, 3, 1).ToString("d", culture)}");
}
en-US: 3/1/1968
en-GB: 01/03/1968
en-CA: 1968-03-01
ja-JP: 1968/03/01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment