Boo.Lang.Compiler.TypeSystem.AnonymousCallableType.IsSubclassOf C# (CSharp) Method

IsSubclassOf() public method

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