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

Possible Duplicate:
How do I Convert a string to an enum in C#?

I have an enum of type int:

public enum BlahType
{
       blah1 = 1,
       blah2 = 2
}

If I have a string:

string something = "blah1"

How can I convert this to BlahType?

share|improve this question

marked as duplicate by Mat, JB King, Caleb, sarnold, EJP Jun 30 '11 at 22:23

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

4 Answers

up vote 6 down vote accepted

You want Enum.Parse

BlahType blahValue = (BlahType) Enum.Parse(typeof(BlahType), something);
share|improve this answer

I use a function like this one

public static T GetEnumValue<T>(string value)
{
    return (T)Enum.Parse(typeof(T), value);
}

And you can call it like this

BlahType value = GetEnumValue<BlahType>("Blah1");
share|improve this answer
Me too... very very useful! – Simon Gillbee Nov 5 '09 at 21:09

I use this function to convert a string to a enum; then you can cast to int or whatever.

public static T ToEnum<T>(string value, bool ignoreUpperCase)
		where T : struct, IComparable, IConvertible, IFormattable {
		Type enumType = typeof (T);
		if (!enumType.IsEnum) {
			throw new InvalidOperationException();
		}
		return (T) Enum.Parse(enumType, value, ignoreUpperCase);
}
share|improve this answer
Nice extension method. I just wonder why should it ignore uppercase only rather than just ignore case? ;) – Fredrik Mörk Nov 5 '09 at 21:14
1  
When I first did that function, I though about checking for if the given type was an enum. I gave up after discovering (with reflector) that Enum.Parse already do these check (and more) and throw a ArgumentException if the type is not an enum. – Pierre-Alain Vigeant Nov 5 '09 at 21:15
sorry, that's a spanish translation issue, it's just a wrapper for the overload of Enum.Parse – Jhonny D. Cano -Leftware- Nov 6 '09 at 12:51
    public enum BlahType
    {
        blah1 = 1,
        blah2 = 2
    }

    string something = "blah1";
    BlahType blah = (BlahType)Enum.Parse(typeof(BlahType), something);

If you are not certain that the conversion will succeed - then use TryParse instead.

share|improve this answer

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