vote up 14 vote down star
11

I'm building a function to extend the Enum.Parse concept that

  • allows a default value to be parsed in case that an Enum value is not found
  • Is case insensitive

So I wrote the following

        public static T GetEnumFromString<T>(string value, T defaultValue) where T : Enum
        {
            if (string.IsNullOrEmpty(value)) return defaultValue;
            foreach (T item in Enum.GetValues(typeof(T)))
            {
                if (item.ToString().ToLower().Equals(value.Trim().ToLower())) return item;
            }
            return defaultValue;
        }

I am getting a Error Constraint cannot be special class 'System.Enum'

Fair enough, but is there a workaround to allow a Generic Enum, or am I going to have to mimic the Parse function and pass a type as an attribute, which forces the ugly boxing requirement to your code.

EDIT All suggestions below have been greatly appreciated, thanks

Have settled on (I've left the loop to maintain case insensitivity - I am usng this when parsing XML)

public static class EnumUtils
{
    public static T ParseEnum<T>(string value, T defaultValue) where T : struct, IConvertible
    {
        if (!typeof(T).IsEnum) throw new ArgumentException("T must be an enumerated type");
        if (string.IsNullOrEmpty(value)) return defaultValue;

        foreach (T item in Enum.GetValues(typeof(T)))
        {
            if (item.ToString().ToLower().Equals(value.Trim().ToLower())) return item;
        }
        return defaultValue;
    }
}
flag

Why the hell is Extension methods only in ref types????????????? – Shimmy Aug 18 at 12:08

8 Answers

vote up 9 vote down check

You can constrain a generic type parameter to be a value type (such as an int, a bool, and enum) or any custom structure using the struct constraint:

public class MyClass where T : struct

{...}

link|flag
VB Alterative would be Public Class MyClass<T as struct> – Tom Anderson Dec 31 '08 at 18:01
2  
In your so-short comment you managed to make 3 errors: 1) MyClass is a keyword in VB. 2) (Of T) is used for g. type params in VB, not <>. 3) A 'struct' in VB is 'Structure' not 'struct' as in C#. VB alternative is Public Class [MyClass](Of T As Structure) (the brackets are to tell the compiler to treat ignore keywords - not recommended, the best is use a different class name i.e. Public Class StructureWrapper(Of T As Structure) etc.). – Shimmy Aug 18 at 8:40
vote up 1 vote down

Hope this is helpful:

public static TValue ParseEnum<TValue>(string value, TValue defaultValue)
                  where TValue : struct // enum 
            {
                  try
                  {
                        if (String.IsNullOrEmpty(value))
                              return defaultValue;
                        return (TValue)Enum.Parse(typeof (TValue), value);
                  }
                  catch(Exception ex)
                  {
                        return defaultValue;
                  }
            }
link|flag
Nicely cleaned, thanks – johnc Sep 17 '08 at 2:03
Thanks, but, this does not address the case insensitive functionality I wanted. – johnc Sep 17 '08 at 2:20
vote up 3 vote down

I modified the sample by dimarzionist. This version will only work with Enums and not let structs get through.

public static T ParseEnum<T>(string enumString)
    where T : struct // enum 
    {
    if (String.IsNullOrEmpty(enumString) || !typeof(T).IsEnum)
       throw new Exception("Type given must be an Enum");
    try
    {

       return (T)Enum.Parse(typeof(T), enumString);
    }
    catch (Exception ex)
    {
       return default(T);
    }
}
link|flag
vote up 2 vote down

You can define a static constructor for the class that will check that the type T is an enum and throw an exception if it is not. This is the method mentioned by Jeffery Richter in his book CLR via C#.

internal sealed class GenericTypeThatRequiresAnEnum<T> {
    static GenericTypeThatRequiresAnEnum() {
        if (!typeof(T).IsEnum) {
        throw new ArgumentException("T must be an enumerated type");
        }
    }
}

Then in the parse method, you can just use Enum.Parse(typeof(T), input, true) to convert from string to the enum. The last true parameter is for ignoring case of the input.

link|flag
I was unaware of the case insensitive option on Enum.Parse, thanks – johnc Sep 18 '08 at 7:27
vote up 11 vote down

Since Enum Type implements IConvertible interface, a better implementation should be something like this:

public T GetEnumFromString<T>(string value) where T : struct, IConvertible
        {
           if (!typeof(T).IsEnum) 
           {
              throw new ArgumentException("T must be an enumerated type");
           }

           //...
        }

This will still permit passing of value types implementing IConvertible. The chances are rare though.

link|flag
this appears to only be vs2008 and newer, right? or maybe it's just not in vb2005? – Maslow May 29 at 18:28
Generics are available since .NET 2.0. Hence they are available in vb 2005 as well. – Vivek Jun 1 at 17:07
vote up 1 vote down

Maybe you should use ToUpperInvariant() instead of ToLower()...

link|flag
Thanks, I never knew that – johnc Oct 7 '08 at 2:47
vote up 1 vote down

LagerDalek, running your edited code through ildasm actually creates a single unbox instruction in the foreach loop. FxCop happened to catch it for me. :)

link|flag
interesting ... – johnc Jun 26 at 10:57
vote up 1 vote down

Interestingly enough, apparently this is possible in other langauges (Managed C++, IL directly).

To Quote:

... Both constraints actually produce valid IL and can also be consumed by C# if written in another language (you can declare those constraints in managed C++ or in IL).

Who knows

link|flag

Your Answer

Get an OpenID
or

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