System.Flags.HasSomeFlags C# (CSharp) Method

HasSomeFlags() public static method

public static HasSomeFlags ( byte b, byte flags ) : bool
b byte
flags byte
return bool
        public static bool HasSomeFlags(byte b, byte flags)
        {
            return (b & flags) != 0;
        }

Same methods

Flags::HasSomeFlags ( byte b, int flags ) : bool