Returns true if t is a generic nullable

Namespace: BrightstarDB.EntityFramework
Assembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)

Syntax

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

Parameters

t
Type: System..::..Type
The Type to be checked

Return Value

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