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

IsNumber() public method

public IsNumber ( IType type ) : bool
type IType
return bool
        public bool IsNumber(IType type)
        {
            return IsPrimitiveNumber(type) || type == DecimalType;
        }
TypeSystemServices