Boo.Lang.Compiler.TypeSystem.TypeSystemServices.IsAttribute C# (CSharp) Method

IsAttribute() public method

public IsAttribute ( IType type ) : bool
type IType
return bool
        public bool IsAttribute(IType type)
        {
            return type.IsSubclassOf(SystemAttribute);
        }
TypeSystemServices