1) I’m aware of the following benefits:
they increase the level of abstraction since you immediately see what underlying integral values represent.
You can use them instead of magic numbers and by doing that making the code more understandable
They also restrict the values an
enumvariable can have and in doing so make the application safer, since programmers know which values are valid for variable, so I guess they sort of provide a type safety
Are there any other benefits they provide over directly using integral values?
2) Why do they use integrals as an underlying type and not string?
thank you
MyEnum evil = (MyEnum)666;and this compiles just fine, even if the value may not compare true with any of the specified values in the enum. Enums are a way to help express the meaning of particular values, but there is nothing that forces enum values to actually be meaningful. – Dan Bryant Sep 14 '10 at 19:04