In enumeration, the enumerators are also referenced by integer values 0 - the end enumerator, so:

Code:
enum MyEnum { Red, Blue, Green } Colors;
Blue can be assigned using the integer 1 just as Red = 0, Blue = 1, Green = 2, and so on.