Using a standardized naming convention is an important element in writing code that is easy to read, understand, and maintain. Microsoft recommends that you do not use the suffix 'Enum' for enumeration names. Instead, you should choose a name that describes the enum's purpose.
' VB
Public Enum DaysEnum
// C#
enum DaysEnum
' VB
Public Enum Days
// C#
enum Days