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.
|
|
|||||||
|
|
|
No. If you really need a group of int constants, then use a static class:
|
||
|
|
|
|
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. |
||
|
|
|
|
If you really want to do that, you could create an extension method like the following for enums
Then you could use it like the following
|
|||
|
|
