I have an enum of for example 'Gender' (Male =0 , Female =1) and I have another enum fron a service which has its own Gender enum (Male =0 , Female =1, Unknown =2)

My question is how can I write something quick and nice to convert from their enum to mine?

link|improve this question

56% accept rate
3  
What do you want to convert "unknown" to? – Pavel Minaev Nov 30 '09 at 6:27
feedback

6 Answers

up vote 8 down vote accepted

Using an extension method works quite neatly, when using the two conversion methods suggested by Nate:

public static class TheirGenderExtensions
{
    public static MyGender ToMyGender(this TheirGender value)
    {
        // insert switch statement here
    }
}

public static class MyGenderExtensions
{
    public static TheirGender ToTheirGender(this MyGender value)
    {
        // insert switch statement here
    }
}

Obviously there's no need to use separate classes if you don't want to. My preference is to keep extension methods grouped by the classes/structures/enumerations they apply to.

link|improve this answer
+1 Woooo. I always thought extension methods cannot work on enums. Its amazing! Thanks for enlightening me.... – Hemant Nov 30 '09 at 9:44
Nice, I didn't know that worked either. I'll definitely do that next time I have to write an enum conversion. – Nate C-K Dec 5 '09 at 4:40
feedback

To be thorough I normally create a pair of functions, one that takes Enum 1 and returns Enum 2 and another that takes Enum 2 and returns Enum 1. Each consists of a case statement mapping inputs to outputs and the default case throws an exception with a message complaining about an unexpected value.

In this particular case you could take advantage of the fact that the integer values of Male and Female are the same, but I'd avoid that as it's hackish and subject to breakage if either enum changes in the future.

link|improve this answer
2  
+1 I have seen many developers giving up to the urge of using integer value of enums to convert them but this is very error prone. The old school method of writing 2 functions has proven its worth over time... – Hemant Nov 30 '09 at 6:33
feedback

Given Enum1 value = ..., then if you mean by name:

Enum2 value2 = (Enum2) Enum.Parse(typeof(Enum2), value.ToString());

If you mean by numeric value, you can usually just cast:

Enum2 value2 = (Enum2)value;

(with the cast, you might want to use Enum.IsDefined to check for valid values, though)

link|improve this answer
feedback

you could write a simple function like the following:

public static MyGender ConvertTo(TheirGender theirGender)
{
    switch(theirGender)
    {
        case TheirGender.Male:
            break;//return male
        case TheirGender.Female:
            break;//return female
        case TheirGender.Unknown:
            break;//return whatever
    }
}
link|improve this answer
You can safely remove the myGender parameter. – scwagner Nov 30 '09 at 6:33
Good point, didn't catch that somehow – RCIX Nov 30 '09 at 6:48
feedback

You can use ToString() to convert the first enum to its name, and then Enum.Parse() to convert the string back to the other Enum. This will throw an exception if the value is not supported by the destination enum (i.e. for an "Unknown" value)

link|improve this answer
feedback

Just cast one to int and then cast it to the other enum (considering that you want the mapping done based on value):

Gender2 gender2 = (Gender2)((int)gender1);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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