vote up 7 vote down star
2

Is there a best way to turn an integer into its month name in .net?

Obviously I can spin up a datetime to string it and parse the month name out of there. That just seems like a gigantic waste of time.

flag

5 Answers

vote up 17 vote down check

Try GetMonthName from DateTimeFormatInfo

http://msdn.microsoft.com/en-us/library/system.globalization.datetimeformatinfo.getmonthname.aspx

You can do it by:

CultureInfo.CurrentCulture.DateTimeFormat.GetMonthName(1);
link|flag
vote up 13 vote down

CultureInfo.DateTimeFormat.MonthNames[index]

link|flag
Thats a good one too :) – leppie Oct 20 '08 at 16:01
1  
This doesn't work. Nick Berardi provided the correct answer. – raven Oct 20 '08 at 16:58
This is where the functionality is, if you want me to write code for you ... – Ovidiu Pacurar Oct 20 '08 at 18:18
from now I will try to compile my answers first – Ovidiu Pacurar Oct 20 '08 at 18:19
vote up 6 vote down

Why not just use somedatetime.ToString("MMMM")?

link|flag
So anytime I need to turn 1 into January, I need to new up a date time with an arbitrary year and day, in order to just get January? – DevelopingChris Oct 20 '08 at 15:56
That is correct, as a bonus, you can have it in any localizable language you want :) – leppie Oct 20 '08 at 15:57
vote up 1 vote down

To get abbreviated month value, you can use Enum.Parse();

Enum.Parse(typeof(Month), "0");

This will produce "Jan" as result.

Remember this is zero-based index.

link|flag
vote up 0 vote down

you can use a static method from the Microsoft.VisualBasic namespace:

string monthName = Microsoft.VisualBasic.DateAndTime.MonthName(monthInt, false);

link|flag

Your Answer

Get an OpenID
or

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