vote up 12 vote down star
3

What's a quick and easy way to cast an int to an enum in c#?

flag

4 Answers

vote up 30 vote down check

From a string:

YourEnum foo = (YourEnum) Enum.Parse(typeof(yourEnum), yourString);

From an int:

YourEnum foo = (YourEnum)yourInt;
link|flag
vote up 20 vote down

Just cast it:

MyEnum e = (MyEnum)3;

You can check if it's in range using Enum.IsDefined:

if (Enum.IsDefined(typeof(MyEnum), 3)) { ... }
link|flag
3  
Beware you can't use Enum.IsDefined if you use the Flags attribute and the value is a combination of flags for example: Keys.L | Keys.Control – dtroy Jul 31 at 4:49
Good point, dtroy! +1! – Matt Hamilton Jul 31 at 4:51
vote up 4 vote down
int one = 1;

MyEnum e = (MyEnum)one;
link|flag
vote up 0 vote down

Using reflection, how can I convert from a number to a enum witch type can be passed as method parameter? thanks

link|flag
You should turn this into a separate question – Philippe Leybaert Jun 1 at 13:47
MethodThatTakesEnumParameter((MyEnum)myInt); – Carl Bergquist Jun 1 at 13:50

Your Answer

Get an OpenID
or

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