ReSharper 2016.3 Help

Code Inspection: Underlying type of enum is 'int'

Specifying the enumeration type to be int is redundant because, by default, int is the default governing type for enumeration members. Consequently, the specification can be safely removed.

enum Letters : int // <-- not required { Alpha, Beta, Gamma }
Last modified: 12 October 2017

See Also