What's a quick and easy way to cast an int to an enum in C#?
|
From a string:
From an int:
Update : From number you can also:
|
|||||||||||||||||
|
|
Just cast it:
You can check if it's in range using Enum.IsDefined:
|
|||||||||||||||||
|
|
For those people stopping by, who wants to use as an extension method.
Usage
OR
|
|||||
|
|
Below is a nice utility class for Enums
|
|||
|
|
|
I am using this piece of code to cast int to my enum:
I find it the best solution. |
|||
|
|
|
If you have an integer that acts as a bitmask and could represent one or more values in a [Flags] enumeration, you can use this code to parse the individual flag values into a list:
|
|||
|
|
|
Sometimes you have an object to the
Then:
|
||||
|
|
|
If you're ready for the 4.0 .NET Framework, there's a new Enum.TryParse() function that's very useful and plays well with the [Flags] attribute. See Enum.TryParse Method (String, TEnum%) |
|||||
|
|
For numeric values, this is safer as will return you an object no matter what:
|
|||
|
|
