up vote 3 down vote favorite
share [g+] share [fb]

Is there a way i can make my enum defaulted as ints? so i dont need to typecast it everywhere? Basically i am using it as a list of const values.

link|improve this question

75% accept rate
Dupe? stackoverflow.com/questions/577946/… – Oskar Jun 10 '09 at 12:46
1  
Oskar. Kind of but i am not trying to avoid typecast. I just hate typing out the extra syntax of const int and i know [Flag] can modify the enum behavior so i was hoping to find something similar. – acidzombie24 Jun 10 '09 at 12:51
feedback

3 Answers

No.

If you really need a group of int constants, then use a static class:

public static class Constants {
  public const int ConstantOne = 42;
  public const int ConstantTwo = 42;
  ...
}
link|improve this answer
feedback

No, if you've declared an enum, their default value is as an enum, and an explicit cast is required to get to the int value. If you're using the enum as const values, why not use const values? If you want some separation you could create a struct that contains nothing but these const values.

link|improve this answer
feedback

If you really want to do that, you could create an extension method like the following for enums

public static int ToInt(this Enum obj)
{
   return Convert.ToInt32(obj);
}

Then you could use it like the following

var t = Gender.male;
var r = t.ToInt();
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.