Creates a type name from type info.

Namespace:  Gallio.Common.Reflection
Assembly:  Gallio (in Gallio.dll) Version: 3.3.0.0 (3.3.610.0)

Syntax

C#
public TypeName(
	ITypeInfo typeInfo
)
Visual Basic (Declaration)
Public Sub New ( _
	typeInfo As ITypeInfo _
)

Parameters

typeInfo
Type: Gallio.Common.Reflection..::.ITypeInfo
The type info.

Exceptions

ExceptionCondition
System..::.ArgumentNullExceptionThrown if typeInfo is null.
System..::.ArgumentExceptionThrown if typeInfo does not have a valid FullName property (for example, it represents a generic type parameter).

See Also