vote up 2 vote down star
2

How does one go about finding the month name in c#? I really do not want to write a huge switch statement or if statement on the month int. I know in vb.net you can use MonthName()

flag

4 Answers

vote up 10 vote down check

You can use the CultureInfo to get the month name. You can even get the short month name as well as other fun things.

I would suggestion you put these into extension methods, which will allow you to write less code later. However you can implement however you like.

Here is an example of how to do it using extension methods:

using System;
using System.Globalization;

class Program
{
    static void Main()
    {

        Console.WriteLine(DateTime.Now.ToMonthName());
        Console.WriteLine(DateTime.Now.ToShortMonthName());
        Console.Read();
    }
}

static class DateTimeExtensions
{
    public static string ToMonthName(this DateTime dateTime)
    {
        return CultureInfo.CurrentCulture.DateTimeFormat.GetMonthName(dateTime.Month);
    }

    public static string ToShortMonthName(this DateTime dateTime)
    {
        return CultureInfo.CurrentCulture.DateTimeFormat.GetAbbreviatedMonthName(dateTime.Month);
    }
}

Hope this helps!

link|flag
vote up 2 vote down

If you just want to use MonthName then reference Microsoft.VisualBasic and it's in Microsoft.VisualBasic.DateAndTime

//eg. Get January
String monthName = Microsoft.VisualBasic.DateAndTime.MonthName(1);
link|flag
vote up 1 vote down
string CurrentMonth = String.Format("{0:MMMM}", DateTime.Now)
link|flag
You don't need the ToString(). – Richard Hein Jun 10 at 13:23
2  
Or String.Format, actually. Just DateTime.Now.ToString("MMMM") is simpler. – Jon Skeet Jun 10 at 13:32
I would have suggested that as well, but you already had that as another answer. Gortok's method also demonstrates the use of placeholders to do the formatting, so I think it's a good alternative example. – Richard Hein Jun 10 at 19:20
vote up 13 vote down

Use the "MMMM" format specifier:

string month = dateTime.ToString("MMMM");
link|flag

Your Answer

Get an OpenID
or

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