A couple of gotcha’s with enums
Within C# I use enumerations a lot. An enumeration is a distinct type which contains a collection of named constants. It can be a lot of underlying types (byte, sbyte, short, ushort, int, uint, long, or ulong) but i usually see the default which is an int (Int32). You can …