Boo.Lang.Compiler.TypeSystem.NamespaceEntity.IsFlagSet C# (CSharp) Method

IsFlagSet() private static method

private static IsFlagSet ( EntityType flags, EntityType flag ) : bool
flags EntityType
flag EntityType
return bool

        private static bool IsFlagSet(EntityType flags, EntityType flag)
        {
            return flag != (flag & flags);
        }