lol, only Canada is sane xD
Created
March 1, 2018 16:00
-
-
Save binki/bcb521b9583da8b943e83e4b0addeaaf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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)}"); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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