Checks if a type is nullable one.

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

Syntax

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

Parameters

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

Return Value

Type: Boolean
True if type is nullable, 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