Say I have the below enum
[Flags] enum Letters { A = 1, B = 2, C = 4, D = 8, E = 16, F = 32, AB = A | B, All = A | B | C,
Here is the result:
var result = s & p;