Click or drag to resize

TypeRefBase  Conversion (TypeParameter to TypeRefBase)

Implicit conversion of a TypeParameter to a TypeRefBase (actually, a TypeParameterRef).

Namespace:  Nova.CodeDOM
Assembly:  Nova.CodeDOM (in Nova.CodeDOM.dll) Version: 7.44.8391.13415
Syntax
C#
public static implicit operator TypeRefBase (
	TypeParameter typeParameter
)

Parameters

typeParameter
Type: Nova.CodeDOMTypeParameter
The TypeParameter to be converted.

Return Value

Type: TypeRefBase
A generated TypeParameterRef to the specified TypeParameter.
Remarks
This allows TypeParameters to be passed directly to any method expecting a TypeRefBase type without having to create a reference first.
See Also