Imagine you have this enum definition and a variable of same type: [Flags] public enum Tubo { One, Two } ... Tubo tubo = Tubo.One; Now, how do you check if a variable of type Tubo contains a flag, i.e. Tubo.One? Simple, like this: bool b = (tubo &...