Last active
August 6, 2017 15:02
-
-
Save vgerbase/750c41d854db38954da5 to your computer and use it in GitHub Desktop.
C# code to generate list of months's names
This file contains 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
DateTimeFormatInfo dateTimeFormatInfo = new DateTimeFormatInfo(); | |
var months = dateTimeFormatInfo.MonthNames.ToList(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment