Boo.Lang.Compiler.TypeSystem.TypeSystemServices.IsPrimitiveNumber C# (CSharp) 메소드

IsPrimitiveNumber() 공개 메소드

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