A flags-style enum value needs to be tested with bitwise logic because it may not match any single value.
[Flags]
enum FlagsEnum
{
Option1 = 1,
Option2 = 2,
Option3 = 4,
Option2And3 = Option2 | Option3;
Default = Option1 | Option3,
}
The Default value is actually a ...