The well known (or moderately known fact): C# enums can contain any value supported by its base type and not just the ones specified in the enum . Lets consider the following enum. enum WeekDay { Monday = 1, Tuesday = 2, Wednesday = 3, Thursday = 4, Friday