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

I have 2 enums

public enum PersonTitle{
   Mr=0,Ms=1,Mrs=2
}

public enum SystemPersonTitles{
   Mr=0,Ms=1,Mrs=2
}

How do I convert one to an other (no Switch cases or If Statements).

public void SystemPersonTitles TellWhatYouAre(PersonTitle personTitle){
//here
}
//usage
SystemPersonTitles systemPersonTitles = TellWhatYouAre(PersonTitle.Ms);
share|improve this question
2  
The values are the same, so you can just cast it – harold Oct 4 '11 at 8:12

8 Answers

up vote 3 down vote accepted
SystemPersonTitles newValue = (SystemPersonTitles)(int)PersonTitle.Mr;

Out of the head, I cannot test this as I'm currently on my OSX.

share|improve this answer
4  
This will work, but the int cast is redundant – Øyvind Knobloch-Bråthen Oct 4 '11 at 8:14

Enums are just glorified integers, so you can simply cast from one to another:

public SystemPersonTitles TellWhatYouAre(PersonTitle personTitle)
{
    return (SystemPersonTitles)personTitle;
}

Note that this conversion is based on the int values, not the names.

share|improve this answer

Since both are basically an int, you can just cast it.

So if you have a instance of PersonTitle called title, you can do this:

SystemPersonTitles newTitle = (SystemPersonTitles)title;
share|improve this answer

If you want to convert them by value, you can use this:

(SystemPersonTitles)PersonTitle.Mr;

If you want to convert them by name, you can use this:

public bool TryConvertToSystemPersonTitles(
    PersonTitle personTitle, out SystemPersonTitles result)
{
    return Enum.TryParse(personTitle.ToString(), out result);
}
share|improve this answer
@dtb: I wrote it one way, then changed to a different way. :o Guess I left stray code in. – 280Z28 Oct 4 '11 at 8:50

Cast it to an int and then back to the other Enum.

public void SystemPersonTitles TellWhatYouAre(PersonTitle personTitle){
    int value = (int)personTitle;
    var systemPersonTitle = (SystemPersonTitles)value;
}

Can also be done directly, as others point out, but I wanted to be explicit to show the mechanics behind the solution.

SystemPersonTitles systemPersonTitle = (SystemPersonTitles)personTitle;
share|improve this answer
You can cast directly. No need to go through int first. – Øyvind Knobloch-Bråthen Oct 4 '11 at 8:14
@ØyvindKnobloch-Bråthen I know, it's for clarity for the person asking, to show the inner mechanics. – Seb Nilsson Oct 4 '11 at 8:23

You can do this:

PersonTitle person = PersonTitle.Mr;

SystemPersonTitles system = (int) person;

This will do conversion according the int value.

If you want to do it by Name, do :

PersonTitle person = PersonTitle.Mr;

SystemPersonTitles sys = (SystemPersonTitles)Enum.Parse(person.GetType(), person.ToString());
share|improve this answer

Something like (SystemPersonTitles )(int)personTitle

share|improve this answer
You don't even need the int cast – Øyvind Knobloch-Bråthen Oct 4 '11 at 8:13
Thx, didn't know that – Vasiliy Shiryaev Oct 4 '11 at 8:15

There is no direct way to do it, and it's the right way. let say you could do:

personTitle = systemPersonTitle;

what would happen to your code if SystemPersonTitles will change to any one of those:

public enum SystemPersonTitles1{
   Mr=1,Ms=2,Mrs=3
}

public enum SystemPersonTitles2{
   Mr=0,Ms=1,Mrs=2,UnKnown=3
}

public enum SystemPersonTitles3{
   Mrs=0,Ms=1,Mr=2
}

Or any other change one may think of.
sure you can bypass this limitation, but it's just bad programming. If you chose to use the "int" value of them and loss the enum ability. just use "int" to begin with...

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.