Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

10 Answers

up vote 759 down vote accepted

From a string:

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

From an int:

YourEnum foo = (YourEnum)yourInt;

Update : From number you can also:

YourEnum foo = Enum.ToObject(typeof(YourEnum) , yourInt);
share|improve this answer
26  
I found this little confusing, correct way should be: YourEnum foo = (YourEnum) Enum.Parse(typeof(YourEnum), yourString); – Xorty Nov 15 '10 at 22:23
That correct it should be: YourEnum foo = (YourEnum) Enum.Parse(typeof(YourEnum), yourString) OR YourEnum foo = (YourEnum) Enum.Parse(typeof(YourEnum), yourInt) -- As applicable. – Tathagat Verma Nov 24 '11 at 7:24
1  
@FlySwat, what if YourEnum is dynamic and will only be known at runtime, and what I want is to convert to Enum? – Shimmy Feb 19 '12 at 9:56
@Shimmy. If the enum is only known at runtime, keep it dynamic. Type safety (strong typing) can only be guaranteed by the compiler anyway. You cannot strongly type an object at runtime. The closest you can come to it is by using generics, but the generic type must be known at compile time. T ToEnum<T>(int x) { return (T)x; } but there is no real advantage over casting directly. – Olivier Jacot-Descombes Feb 21 at 15:40
Quick question, if you were to go back from YourEnum foo to int anInt type: anInt = (int)foo; would that work? – Logan Apr 13 at 9:24
show 2 more comments

Just cast it:

MyEnum e = (MyEnum)3;

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

if (Enum.IsDefined(typeof(MyEnum), 3)) { ... }
share|improve this answer
82  
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 '09 at 4:49
1  
Good point, dtroy! +1! – Matt Hamilton Jul 31 '09 at 4:51
3  
i know it's four years on but that's exactly what i was looking for! – iagosabel May 4 '12 at 13:39
2  
@iagosabel Me too! Ain't StackOverflow grand ;-) – Pandincus Jun 28 '12 at 14:35

For those people stopping by, who wants to use as an extension method.

public static T ToEnum<T>(this string enumString)
{
    return (T) Enum.Parse(typeof (T), enumString);
}

Usage

Color colorEnum = "Red".ToEnum<Color>();

OR

string color = "Red";
var colorEnum = color.ToEnum<Color>();
share|improve this answer
2  
Excellent. i am very interesting to learn Extension Method. +1 – imdadhusen Mar 15 '12 at 12:18
int one = 1;

MyEnum e = (MyEnum)one;
share|improve this answer

Below is a nice utility class for Enums

public static class EnumHelper
{
    public static int[] ToIntArray<T>(T[] value)
    {
        int[] result = new int[value.Length];
        for (int i = 0; i < value.Length; i++)
            result[i] = Convert.ToInt32(value[i]);
        return result;
    }

    public static T[] FromIntArray<T>(int[] value) 
    {
        T[] result = new T[value.Length];
        for (int i = 0; i < value.Length; i++)
            result[i] = (T)Enum.ToObject(typeof(T),value[i]);
        return result;
    }


    internal static T Parse<T>(string value, T defaultValue)
    {
        if (Enum.IsDefined(typeof(T), value))
            return (T) Enum.Parse(typeof (T), value);

        int num;
        if(int.TryParse(value,out num))
        {
            if (Enum.IsDefined(typeof(T), num))
                return (T)Enum.ToObject(typeof(T), num);
        }

        return defaultValue;
    }
}
share|improve this answer

I am using this piece of code to cast int to my enum:

if (typeof(YourEnum).IsEnumDefined(valueToCast)) return (YourEnum)valueToCast;
else { //handle it here, if its not defined }

I find it the best solution.

share|improve this answer

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:

for (var flagIterator = 0x1; flagIterator <= 0x80000000; flagIterator <<= 1)
{
    // Check to see if the current flag exists in the bit mask
    if ((intValue & flagIterator) != 0)
    {
        // If the current flag exists in the enumeration, then we can add that value to the list
        // if the enumeration has that flag defined
        if (Enum.IsDefined(typeof(MyEnum), flagIterator))
            ListOfEnumValues.Add((MyEnum)flagIterator);
    }
}
share|improve this answer

Sometimes you have an object to the MyEnum type. Like

var MyEnumType = typeof(MyEnumType);

Then:

Enum.ToObject(typeof(MyEnum), 3)
share|improve this answer

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%)

share|improve this answer
5  
That's useful when converting from a string. But not when converting from an int. – CodesInChaos Nov 1 '11 at 15:08

For numeric values, this is safer as will return you an object no matter what:

public static class EnumEx
{
    static public bool TryConvert<T>(int value, out T result)
    {
        result = default(T);
        bool success = Enum.IsDefined(typeof(T), value);
        if (success)
        {
            result = (T)Enum.ToObject(typeof(T), value);
        }
        return success;
    }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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