Let\'s say I have this enum:
[Flags] enum Letters { A = 1, B = 2, C = 4, AB = A | B, All = A | B | C, }
To check i
If you want to know if letter has any of the letters in AB you must use the AND & operator. Something like:
if ((letter & Letters.AB) != 0) { // Some flag (A,B or both) is enabled } else { // None of them are enabled }