Home TypeExtensions Class
TypeExtensions Class
Cancel

TypeExtensions Class

Namespace: Json.More

Inheritance: TypeExtensions 🡒 object

Provides informative methods for types.

Methods

IsFloatingPoint(this Type type)

Determines whether the type is a non-integer floating point number.

Declaration

1
public static bool IsFloatingPoint(this Type type)
ParameterTypeDescription
typeTypeThe type.

Returns

true if it represents a floating-point number; false otherwise.

IsInteger(this Type type)

Determines whether the type is considered an integer.

Declaration

1
public static bool IsInteger(this Type type)
ParameterTypeDescription
typeTypeThe type.

Returns

true if it represents an integer; false otherwise.

IsNumber(this Type type)

Determines whether the type is a number.

Declaration

1
public static bool IsNumber(this Type type)
ParameterTypeDescription
typeTypeThe type.

Returns

true if it represents a number; false otherwise.

Contents