You use this terrible job.
public enum Month { _1, _2, _3, _4, _5 , _6, _7, _8, _9, _10, _11, _12; }
However, another approach is to use a name and serial number () for numbers.
public enum Month { None, January, February, March, April, May, June, July, August, September, October, November, December } Month month = Month.January; int num = month.ordinal();
source share