Bitfield enums and the Flags attribute
# If you want to use bitfield enums, use the Flags attribute and powers of 
# 2. You can use bitwise operations such as OR to combine values.

[Flags]
enum Abcd {A = 1, B = 2, C = 4, D = 8}
Language C# / Tagged with enums