C# Class Neddle.Extensions.TypeExtensions

Contains Type extension methods.
Datei anzeigen Open project: kcargile/neddle

Public Methods

Method Description
IsNullable ( this t ) : bool

Determines whether the specified type is nullable.

IsSubclassOfRawGeneric ( this t, Type generic ) : bool

Determines whether the specified type is a subclass of the specified generic type.

Method Details

IsNullable() public static method

Determines whether the specified type is nullable.
public static IsNullable ( this t ) : bool
t this The .
return bool

IsSubclassOfRawGeneric() public static method

Determines whether the specified type is a subclass of the specified generic type.
public static IsSubclassOfRawGeneric ( this t, Type generic ) : bool
t this The .
generic System.Type The generic to compare to.
return bool