Use a singular name for most Enums
public enum Volume
{
Low,
Medium,
High
}
Use a plural name for Enum types that are bit fields
[Flags]
public enum MyColors
{
Yellow = 1,
Green = 2,
Red = 4,
Blue = 8
}
Note: Always add the FlagsAttribute to a bit field E...