Boo.Lang.Compiler.TypeSystem.InternalEnum.IsSubclassOf C# (CSharp) 메소드

IsSubclassOf() 공개 메소드

public IsSubclassOf ( IType type ) : bool
type IType
리턴 bool
        public override bool IsSubclassOf(IType type)
        {
            return type == _typeSystemServices.EnumType ||
                _typeSystemServices.EnumType.IsSubclassOf(type);
        }