Boo.Lang.Compiler.TypeSystem.TypeSystemServices.IsPrimitiveNumber C# (CSharp) Méthode

IsPrimitiveNumber() public méthode

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