vote up 1 vote down star

I got an Int16 value, from the database, and need to convert this to an enum type. This is unfortunately done in a layer of the code that knows very little about the objects except for what it can gather through reflection.

As such, it ends up calling Convert.ChangeType which fails with an invalid cast exception.

I found what I consider a smelly workaround, like this:

String name = Enum.GetName(destinationType, value);
Object enumValue = Enum.Parse(destinationType, name, false);

Is there a better way, so that I don't have to move through this String operation?

Here's a short, but complete, program that can be used if anyone need to experiment:

using System;

public class MyClass
{
    public enum DummyEnum
    {
        Value0,
        Value1
    }

    public static void Main()
    {
        Int16 value = 1;
        Type destinationType = typeof(DummyEnum);

        String name = Enum.GetName(destinationType, value);
        Object enumValue = Enum.Parse(destinationType, name, false);

        Console.WriteLine("" + value + " = " + enumValue);
    }
}
flag

Ouch... I need to stop trying to answer questions like this before I've had my coffee... – Daniel Schaffer Feb 3 at 14:10
I see now, the Console.WriteLine is also in a layer that does not have access to the enum type. I completely misunderstood. Deleted my (stupid) answer. – GvS Feb 3 at 15:47

2 Answers

vote up 3 vote down check

Enum.ToObject(.... is what you look for!

link|flag
That is exactly what I was looking for, thanks! – Lasse V. Karlsen Feb 3 at 14:01
vote up -1 vote down

You are not really ahead with this. You'll have to return Object, the client of your class will still have to cast to the desired enum type. Just return an int.

link|flag
This is part of a layer that converts from SQL execution results to values to be put into properties of a type, in which case I already deal with that. The type of the property is an enum, the type of the value is an Int16. – Lasse V. Karlsen Feb 3 at 14:00

Your Answer

Get an OpenID
or

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