vote up 3 vote down star
1

I need to be able to compare some month names I have in an array.

It would be nice if there were some direct way like:

Month.toInt("January") > Month.toInt("May")

My Google searching seems to suggest the only way is to write your own method, but this seems like a common enough problem that I would think it would have been already implemented in .Net, anyone done this before?

flag

7 Answers

vote up 21 vote down check

DateTime.ParseExact(monthName, "MMMM", CultureInfo.CurrentCulture ).Month

Although, for your purposes, you'll probably be better off just creating a Dictionary<string, int> mapping the month's name to its value.

link|flag
2  
Be sure to consider stackoverflow.com/questions/258793/… when deciding whether to use CultureInfo.CurrentCulture or CultureInfo.InvariantCulture – Rasmus Faber Nov 3 '08 at 14:59
vote up 0 vote down

If you are using c# 3.0 (or above) you can use extenders

link|flag
I'm using .net 2.0 – spilliton Nov 3 '08 at 14:39
Then yep, unfortunatly i think your own method would be the most elegant solution. – Adam Naylor Nov 3 '08 at 14:40
vote up 0 vote down

You could do something like this:

Convert.ToDate(month + " 01, 1900").Month
link|flag
vote up 0 vote down

You can use the DateTime.Parse method to get a DateTime object and then check its Month property. Do something like this:

int month = DateTime.Parse("1." + monthName + " 2008").Month;

The trick is to build a valid date to create a DateTime object.

link|flag
vote up 3 vote down

You can use an enum of months:

public enum Month
{
    January,
    February,
    // (...)
    December,
}    

public Month ToInt(Month Input)
{
    return (Month)Enum.Parse(typeof(Month), Input, true));
}

I am not 100% certain on the syntax for enum.Parse(), though.

link|flag
It would need to be "public Month ToInt(string Input) {...}" but otherwise it is correct. – James Curran Nov 3 '08 at 14:51
vote up 4 vote down

If you use the DateTime.ParseExact()-method that several people have suggested, you should carefully consider what you want to happen when the application runs in a non-English environment!

In Denmark, which of ParseExact("Januar", ...) and ParseExact("January", ...) should work and which should fail?

That will be the difference between CultureInfo.CurrentCulture and CultureInfo.InvariantCulture.

link|flag
vote up 1 vote down

IMHO, this is a great example of one of the conundrums of programming. By taking the time to post here, you have spent several times the minute or so it would have taken to write the simple conversion function from scratch. On the other hand, by doing it yourself and showing that you did not know you could use the built in parsing function, you would leave yourself open to criticism. Damned if you do, and damned if you don't.

The lesson is: don't take criticism over trivialities too seriously.

link|flag

Your Answer

Get an OpenID
or

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