Determines if the Type is a non creatable class.

Namespace: NHibernate.Util
Assembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)

Syntax

C#
public static bool IsAbstractClass(
	Type type
)
Visual Basic
Public Shared Function IsAbstractClass ( _
	type As Type _
) As Boolean
Visual C++
public:
static bool IsAbstractClass(
	Type^ type
)

Parameters

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

Return Value

trueTruetruetrue (True in Visual Basic) if the Type is an Abstract Class or an Interface.

See Also