namespace AspClassic.Parser; /// /// The numeric base of an integer literal. /// public enum IntegerBase { /// Base 10. Decimal, /// Base 8. Octal, /// Base 16. Hexadecimal }