Boo.Lang.Compiler.TypeSystem.TypeSystemServices.IsPrimitiveNumber C# (CSharp) Method

IsPrimitiveNumber() public method

public IsPrimitiveNumber ( IType type ) : bool
type IType
return bool
        public bool IsPrimitiveNumber(IType type)
        {
            return IsIntegerNumber(type) || IsFloatingPointNumber(type);
        }
TypeSystemServices