vote up 3 vote down star

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.

flag

38% accept rate
Dupe? stackoverflow.com/questions/577946/… – Oskar Jun 10 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 at 12:51

3 Answers

vote up 8 vote down

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|flag
vote up 7 vote down

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|flag
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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