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 a class called Questions, in this class is an enum called question which looks like this.

public enum Question
{
    Role = 2,
    ProjectFunding = 3,
    TotalEmployee = 4,
    NumberOfServers = 5,
    TopBusinessConcern = 6,
}

In the Questions class I have a get(int foo) function that returns a Questions object for that foo. Is there an easy way to get the integer value off the enum so I can do something like this Questions.Get(Question.Role)?

share|improve this question

13 Answers

up vote 339 down vote accepted

Just cast the enum eg.

int something = (int)Question.Role;
share|improve this answer
Oh, come on, I got enum Test { Item = (int)1 } and I have to cast it on every use? Shame the compiler can't do it for me. It should work as implicit conversion. But of course it doesn't. – Harry Jun 13 '12 at 10:45
2  
@Harry it isn't true. You can create Enumeration without casting, it is not required. and I only assign number in special cases, most of the time, I leave it as default value. but you can do enum Test { Item = 1 } and see that 1 == (int)Test.Item is equal. – Jaider Jun 28 '12 at 20:47
1  
@Jaider (int)Test.Item That is a cast! () is the explicit cast operator. – Sinthia V Jul 26 '12 at 19:02
3  
@Sinthia V he said you can create it without casting, which is correct – Paul Ridgway Aug 17 '12 at 18:30
can this be done as a property beforehand? – Ben Sewards Dec 6 '12 at 1:28

Since Enums can be any integral type (short, byte, int ...etc), a more robust way to get the underlying integral value of the enum would be to make use of the GetTypeCode method in conjunction with the Convert class

enum Sides {
     Left, Right, Top, Bottom
}
Sides side = Sides.Bottom;

var val = Convert.ChangeType(side, side.GetTypeCode()) ;
Console.WriteLine(val);

This should work regardless of the underlying integral type type.

share|improve this answer
4  
This technique proved its worth to me when dealing with a generic type where T:enum (actually T:struct, IConvertible but that's a different story). – aboy021 Jul 5 '11 at 23:20
1  
Very handy solution. +1 – Garreh Jun 21 '12 at 21:38
How would you modify this to print out the hexadecimal value of side? This example shows the decimal value. The problem is that var is of type object, so you need to unbox it and it gets messier than I would like. – Mark Lakata Nov 9 '12 at 2:15
Question question = Question.Role;
int value = (int) question;

Will result in value == 2.

share|improve this answer
7  
The temporary variable question is unnecessary. – Gishu Jun 3 '09 at 6:51
1  
no need to convert it - just cast. – Michael Petrotta Jun 3 '09 at 6:52
2  
You can simply cast in either direction; the only thing to watch is that enums don't enforce anything (the enum value could be 288, even though no Question exists with that number) – Marc Gravell Jun 3 '09 at 6:54
4  
@Gishu: I know, but I prefer being verbose and clear ;) – jerryjvl Jun 3 '09 at 6:55
4  
Thanks guys...the stackoverflow community is truly awesome. – jim Jun 3 '09 at 7:04
show 6 more comments

It's easier than you think - your enum is already an int. It just needs to be reminded:

int y = (int)Question.Role;
Console.WriteLine(y); // prints 2

EDIT: Every enumeration type has an underlying type, which can be any integral type except char.

share|improve this answer
4  
Nitpick: this enum is already an int. Other enums might be different types -- try "enum SmallEnum : byte { A, B, C }" – mquander Jun 3 '09 at 6:56
1  
Absolutely true. C# reference: "Every enumeration type has an underlying type, which can be any integral type except char." – Michael Petrotta Jun 3 '09 at 6:59

Example

Public Enum EmpNo
{
Raj=1
Rahul,
Priyanka
}

And in the code behind to get enum value

int setempNo=(int)EmpNo.Raj; //this will give setempNo=1

or

int setempNo=(int)EmpNo.Rahul; //this will give setempNo=2

Enums will increment by 1; you can set the start value. else it will be assigned as 0 initially.

share|improve this answer

To ensure an enum value exists and then parse it, you can also do the following.

// Fake Day of Week
string strDOWFake = "SuperDay";
// Real Day of Week
string strDOWReal = "Friday";
// Will hold which ever is the real DOW.
DayOfWeek enmDOW;

// See if fake DOW is defined in the DayOfWeek enumeration.
if (Enum.IsDefined(typeof(DayOfWeek), strDOWFake))
{
// This will never be reached since "SuperDay" 
// doesn't exist in the DayOfWeek enumeration.
    enmDOW = (DayOfWeek)Enum.Parse(typeof(DayOfWeek), strDOWFake);
}
// See if real DOW is defined in the DayOfWeek enumeration.
else if (Enum.IsDefined(typeof(DayOfWeek), strDOWReal))
{
    // This will parse the string into it's corresponding DOW enum object.
    enmDOW = (DayOfWeek)Enum.Parse(typeof(DayOfWeek), strDOWReal);
}

// Can now use the DOW enum object.
Console.Write("Today is " + enmDOW.ToString() + ".");

I hope this helps.

share|improve this answer

If you want to get an integer for the enum value that is stored in a variable, wich the type would be "Question", to use for example in a method, you can simply do this I wrote in this example:

enum Talen
{
    Engels=1, Italiaans=2, Portugees=3, Nederlands=4, Duits=5, Dens=6
}

Talen Geselecteerd;    

public void Form1()
{
    InitializeComponent()
    Geselecteerd = Talen.Nederlands;
}

//You can use the Enum type as parameter, so any enumaration from any enumerator can be used as parameter
void VeranderenTitel(Enum e)
{
    this.Text = Convert.ToInt32(e).ToString();
}

This will change the window title to 4, because the variable "Geselecteerd" is "Talen.Nederlands". If I change it to "Talen.Portugees" and call the method again, the text will change to 3.

I had a hard time finding this simple solution on the internet and I couldn't find it, so I was testing somtehings and found this out. Hope this helps. ;)

share|improve this answer
+1 for the interesting dutch example :) – Michael Rodrigues Oct 24 '12 at 10:29

Declare it as a static class with constants in it.

public static class Question
{
    public const int Role = 2;
    public const int ProjectFunding = 3;
    public const int TotalEmployee = 4;
    public const int NumberOfServers = 5;
    public const int TopBusinessConcern = 6;
}

And then you can reference it as Question.Role and it always evaluates to an int or whatever you define it as.

share|improve this answer
I'm surprised this hasn't got more votes - it's so obvious if you really want to use the int type natively. – CAD bloke May 15 at 19:40
I'd use static readonly int because constants are compiled into their hard values. See stackoverflow.com/a/755693/492 – CAD bloke May 15 at 23:16

I was recently converted away from using Enums in my code, in favour of instead using classes with protected constructors and predefined static instances (thanks to Roelof - C# Ensure Valid Enum Values - Futureproof Method).

In light of that, below's how I'd now approach this issue (including implicit conversion to/from int).

public class Question
{
    //attributes
    protected int index;
    protected string name;
    //go with a dictionary to enforce unique index
    //protected static readonly ICollection<Question> values = new Collection<Question>();
    protected static readonly IDictionary<int,Question> values = new Dictionary<int,Question>();

    //define the "enum" values
    public static readonly Question Role = new Question(2,"Role");
    public static readonly Question ProjectFunding = new Question(3, "Project Funding");
    public static readonly Question TotalEmployee = new Question(4, "Total Employee");
    public static readonly Question NumberOfServers = new Question(5, "Number of Servers");
    public static readonly Question TopBusinessConcern = new Question(6, "Top Business Concern");


    //constructors
    protected Question(int index, string name)
    {
        this.index = index;
        this.name = name;
        values.Add(index, this);
    }

    //easy int conversion
    public static implicit operator int(Question question)
    {
        return question.index; //nb: if question is null this will return a null pointer exception
    }
    public static implicit operator Question(int index)
    {
        //return values.FirstOrDefault(item => index.Equals(item.index));
        Question question;
        values.TryGetValue(index, out question);
        return question;
    }

    //easy string conversion (also update ToString for the same effect)
    public override string ToString()
    {
        return this.name;
    }
    public static implicit operator string(Question question)
    {
        return question == null ? null : question.ToString();
    }
    public static implicit operator Question(string name)
    {
        return name == null ? null : values.Values.FirstOrDefault(item => name.Equals(item.name, StringComparison.CurrentCultureIgnoreCase));
    }

    //if you specifically want a Get(int x) function (though not required given the implicit converstion)
    public Question Get(int foo)
    {
        return foo; //(implicit conversion will take care of the conversion for you)
    }
}

The advantage of this approach is you get everything you would have from the enum, but your code's now much more flexible, so should you need to perform different actions based on the value of Question you can put logic into Question itself (i.e. in the preferred OO fashion) as opposed to putting lots of case statements throughout your code to tackle each scenario.

share|improve this answer
public enum Question:int
{
    Role = 2,
    ProjectFunding = 3,
    TotalEmployee = 4,
    NumberOfServers = 5,
    TopBusinessConcern = 6,
}

Questions.Get(Question.Role)
share|improve this answer
This would work great if the Get method were to accept the Question enum as a parameter, but the original question stated that the Get method was accepting an int (in which case, this would not compile). – Funka Feb 28 at 22:44

You can do this by implementing an Extension Method to your defined enum type:

public static class MyExtensions
{
    public static int getNumberValue(this Question questionThis)
    {
        return (int)questionThis;
    }
}

This simplify getting int value of current enum value:

Question question = Question.Role;
int value = question.getNumberValue();

or

int value = Question.Role.getNumberValue();
share|improve this answer
Bronek, what you did is make up uninformative syntax through a (non generic btw) extension method that actually takes longer to write. I fail to see how it is better than the original solution by Tetraneutron. Let us not make this into a chat, help is always welcome in stackoverflow and everyone here is here to help. Please take my comment as constructive criticism. – Benjamin Gruenbaum Dec 10 '12 at 0:28
Benjamin,first of all,why did you delete my comment?I don't understand your decisions-maybe somebody else through the community would agree with my comment.Secondly,my solution wraps Tetraneutron's one and accurately it is easier and less writing because an extension method is suggested by IntelliSense.So I think your decision is not impartial and representative.I see many similar answering on Stack and it is OK.Anyway I use my solution and maybe there are some people would choose my solution in the future,but these negative points make it harder to find.Most of all it is correct and not copy. – Bronek Dec 10 '12 at 3:20

Try this :

int value = YourEnum.ToString("D");

share|improve this answer

The easiest solution I can think of is overloading the Get(int) method like this:

[modifiers] Questions Get(Question q)
{
    return Get((int)q);
}

where [modifiers] can generally be same as for Get(int) method. If You can't edit the Questions class or for some reason don't want to, You can overload the method by writing an extension:

public static class Extensions
{
    public static Questions Get(this Questions qs, Question q)
    {
        return qs.Get((int)q);
    }
}
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.