vote up 8 vote down star
1

Are all Enum enumerations constants? Do they get converted to their value at compile-time, or at run-time?

flag

Can't imagine why anyone would vote down this question. – AnthonyWJones Jan 1 at 22:24
Maybe because (s)he thought that anyone could answer this question with Google and should try that first. I personally haven't yet come to a conclusion where to draw the line, but IMHO there should be a line. – Andreas Huber Jan 1 at 22:37
Google's powered by sites like this so easy questions like this are fine by me. I'd much prefer these to all the silly poll questions. – Michael Haren Jan 1 at 23:49
Sure, Google will index this answer too. But sometimes I wish there was a little less I'm-too-lazy-to-Google-myself noise in all the newsgroups, which would leave us more time to deal with the interesting questions. Note: I'm not saying that this question is noise, but others might have thought so. – Andreas Huber Jan 2 at 0:28
True--I can't argue with you there. – Michael Haren Jan 2 at 0:43
show 3 more comments

2 Answers

vote up 14 vote down check

They are constant. Yes, compile time.

Reference: http://msdn.microsoft.com/en-us/library/sbbt4032.aspx

From the intro:

The enum keyword is used to declare an enumeration, a distinct type that consists of a set of named constants called the enumerator list.

Under "Robust Programming":

Just as with any constant, all references to the individual values of an enum are converted to numeric literals at compile time. This can create potential versioning issues as described in Constants (C# Programming Guide).

link|flag
vote up 4 vote down

Enum values are constants, they cannot change.

Their values are fixed at compile time.

link|flag

Your Answer

Get an OpenID
or

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