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

IsSubclassOf() public method

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