vote up 1 vote down star

I'm looking to see if there is an official enumeration for months in the .net framework.

It seems possible to me that there is one, because of how common the use of month is, and because there are other such enumerations in the .net framework.

For instance, there is an enumeration for the days in the week, System.DayOfWeek, which includes monday, tuesday, etc..

I'm wondering if there is one for the months in the year, ie. January, February, etc?

Does anyone know?

(NOTE: Please hold off on any basic lessons you have about enumerations, I'm sure there are a lot of you itching to respond that question)

Thanks for reading!

flag

5 Answers

vote up 5 vote down check

No, there isn't.

link|flag
vote up 2 vote down

Found one in the enum "MonthNamesType" of this namespace: Microsoft.ServiceModel.Channels.Mail.ExchangeWebService.Exchange2007

The location kinda scares but it's there nonetheless.

link|flag
I would award you the correct answer, but I don't think that is part of the base library .net framework. +1 for effort and creativity. – Mark Rogers May 22 at 19:37
seems like it's part of .net 3.5. Just open the object viewer in Visual Studio and search for "January" and the matches in the API come up. – vidalsasoon May 22 at 19:55
Yeah, I did as you suggested, it looks like it's in v3.0 folder, and it's not a default library. So while I guess it's in the library it's location is less than ideal. It's in something of a gray area as far as the requirements of the question. – Mark Rogers May 27 at 21:34
vote up 2 vote down

What exactly are you attempting to accomplish?

if all you want is twelve strings with the months of the year spelled out, then that is available via a custom format string - applied for any instance of a datetime,

  DateTime dt = DateTime.Parse("12 January 2009";
   dt.ToString("MMM");  // prints "Jan" 
                        // (or the right abbrev is in current culture)
   dt.ToString("MMMM"); // prints "January" 
                        // (or correct sp in current culture)

if you just want to be able to specify the month as an enumerated property of some other object type, then the Month property of a DateTime field returns an integer from 1 to 12...

link|flag
Thanks for your answer, I'm just curious if there is an official enumeration, because I'm about to create one and I'd just like to know if there is one that already exists, so I don't redefine an unneeded enumeration. – Mark Rogers May 22 at 19:32
vote up 1 vote down

I don't know for sure, but my hunch is no. DateTime.Month returns an integer. If there was such an enumeration, it would probably be returned by DateTime.

link|flag
vote up 5 vote down

There isn't, but if you want the name of a month you can use:

CultureInfo.CurrentCulture.DateTimeFormat.GetMonth ( DateTime.Now.Month );

which will return a string representation (of the current month, in this case). Note that GetMonth takes arguments from 1 to 13 - January is 1, 13 is a blank string.

link|flag
1  
That's not an enum though. – Scott Wisniewski May 22 at 19:28
Thanks, interesting answer, not what I was looking for, but still worth a +! – Mark Rogers May 22 at 19:29
You're right, but having an enum for a culture-specific list like that is silly. This is a better solution to the problem, as far as I'm concerned. – Andy Mikula May 22 at 19:30
I agree about the culture specific issue, but why then did microsoft create DayOfWeek, that's culture-specific. Funny, huh? – Mark Rogers May 22 at 19:33
Yeah, I agree that's weird, too. Crazy stuff! – Andy Mikula May 22 at 20:14
show 1 more comment

Your Answer

Get an OpenID
or

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