Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I would like to have a method that will parse from a nullable database column an enum. I wrote this method below (and had to restrict T to a struct to make it compile).

It does compile, but I believe its wrong as Enums are not structs? If so, how do I restrict the generic method to say I am expecting a ValueType you don't have to complain at me that "Only non-nullable value type could be underlying of 'System.Nullable'

private static T? ParseEnum<T>(DataRow row, string columnName)
    where T : struct
{
    T? value = null;
    try
    {
        if (row[columnName] != DBNull.Value)
        {
            value = (T)Enum.Parse(
                typeof(T),
                row[columnName].ToString(),
                true);
        }
    }

    catch (ArgumentException) { }

    return value;
}
share|improve this question
1  
Enums are just ints with sugar on top, so they are indeed structs. – Jens Jul 30 '12 at 10:06
Looks like its also a duplicate, stackoverflow.com/questions/1331739/… – M Afifi Jul 30 '12 at 10:22

2 Answers

up vote 3 down vote accepted

Unfortunately there's no constraint available in C# that allows you to restrict that a given type is an enum. In IL there's such notion though. Jon blogged about it.

share|improve this answer
and also enums are actually structs – Artiom Jul 30 '12 at 10:10

I think you could try to use dynamic and create generic list of enum at runtime

    public static dynamic ToValues(this Type enumType)
    {
        var values = Enum.GetValues(enumType);
        Type list = typeof(List<>);
        Type resultType = list.MakeGenericType(enumType);
        dynamic result =  Activator.CreateInstance(resultType);
        foreach (var value in values)
        {
            dynamic concreteValue = Enum.Parse(enumType, value.ToString());
            result.Add(concreteValue);
        }
        return result;
    }

As a result you'll have List of concrete enum

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.