Boo.Lang.Compiler.TypeSystem.TypeSystemServices.IsAttribute C# (CSharp) 메소드

IsAttribute() 공개 메소드

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