Checks if type is a date time 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 IsDateTimeType(
	this Type type
)
Visual Basic
<ExtensionAttribute> 
Public Shared Function IsDateTimeType ( 
	type As Type
) As Boolean
Visual C++
public:
[ExtensionAttribute]
static bool IsDateTimeType(
	Type^ type
)
F#
static member IsDateTimeType : 
        type : Type -> bool 

Parameters

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

Return Value

Type: Boolean
True if type is a date time 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