vote up 0 vote down star
2

I want to get the month array in c#.
somthing like this : { January , February , ... , December }
How can I do this? please send me codes in C#. thanks

flag

3 Answers

vote up 9 vote down check

You need to careful about localization issues as well: You can use:

string[] monthNames = 
    System.Globalization.CultureInfo.CurrentCulture
        .DateTimeFormat.MonthGenitiveNames;

The genitive case is introduced in some inflected languages by a genitive noun inflection, which in non-inflected languages matches the use of the equivalent of the English preposition "of". For example, a date in the Russian (Russia), "ru-RU", culture, consists of the day number and the genitive month name.

More info…

EDIT: If you need english month names you can set your current culture as en-US

Thread.CurrentThread.CurrentCulture = new CultureInfo("en-US");
link|flag
how can I get just english months? – LIX Nov 5 at 7:05
Good point!!! +1 – o.k.w Nov 5 at 7:05
You need to set your current culture as en-US Thread.CurrentThread.CurrentCulture = new CultureInfo("en-US"); and then use tring[] monthNames = System.Globalization.CultureInfo.CurrentCulture.DateTimeFormat.MonthGenitiveNames; This will ensure that code is localization ready – Ngm Nov 5 at 7:06
fixed formatting and added comment into the question – Spoike Nov 5 at 7:30
2  
Changing the current culture would affect all further execution on that thread. Would probably be a good idea to read the original value and change it back after your code. Or you could you call something like new CultureInfo("...").DateTimeFormat.MonthGenitiveNames. – Simon Svensson Nov 5 at 7:37
vote up 6 vote down
string[] monthNames = System.Globalization.CultureInfo.CurrentCulture.DateTimeFormat.MonthNames;

foreach (string m in monthNames) // writing out
{
    Console.WriteLine(m);
}

Output:

January
February
March
April
May
June
July
August
September
October
November
December

Update:
Do note that for different locales/cultures, the output might not be in English. Haven't tested that before though.

For US English only:

string[] monthNames = (new System.Globalization.CultureInfo("en-US")).DateTimeFormat.MonthNames;
link|flag
Hi You need to be careful about teh use of MonthNames insome languages like russian, look at my post below – Ngm Nov 5 at 7:04
Ngm's MonthGenitiveNames method could be more suitable depending on the context. – o.k.w Nov 5 at 7:05
OK, I've added "en-US cultureinfo" Month Names – o.k.w Nov 5 at 7:11
vote up 4 vote down
string[] months = new string[] {"January", "February", "March", "April", "May",
  "June", "July", "August", "September", "October", "November", "December"};
link|flag
Yeah, what's wrong with writing what you mean? Kudos for remembering how to KISS. – Jeff Meatball Yang Nov 5 at 7:09
And you don't even need new string[] {, new [] { will do. – Yogesh Nov 5 at 7:44

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.