Checks if type is an integer type.

Namespace: MonoSoftware.Core
Assembly: MonoSoftware.Core (in MonoSoftware.Core.dll) Version: 1.0.40.669 (1.0.40.669)

Syntax

C#
public static bool IsIntegerNumberType(
	this Type type
)
Visual Basic
<ExtensionAttribute> 
Public Shared Function IsIntegerNumberType ( 
	type As Type
) As Boolean
Visual C++
public:
[ExtensionAttribute]
static bool IsIntegerNumberType(
	Type^ type
)
F#
static member IsIntegerNumberType : 
        type : Type -> bool 

Parameters

type
Type: System..::..Type
Type to check

Return Value

Type: Boolean
True if type is an integer type, False otherwise

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Type. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also