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

IsSubclassOf() 공개 메소드

public IsSubclassOf ( IType other ) : bool
other IType
리턴 bool
        public override bool IsSubclassOf(IType other)
        {
            return BaseType.IsSubclassOf(other) || other == BaseType ||
                other == _typeSystemServices.ICallableType;
        }