Code inspection: Underlying type of enum is 'int'Last modified: 11 February 2024 Category: Redundancies in Symbol Declarations ID: EnumUnderlyingTypeIsInt EditorConfig: resharper_enum_underlying_type_is_int_highlighting Default severity: Warning Language: C# Requires SWA: NotipYou can suppress this inspection to ignore specific issues, change its severity level to make the issues less or more noticeable, or disable it altogether.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 }