GenericTypeParameterBuilder.GetElementType Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Throws a NotSupportedException in all cases.
public:
override Type ^ GetElementType();
public override Type GetElementType ();
public override Type? GetElementType ();
override this.GetElementType : unit -> Type
Public Overrides Function GetElementType () As Type
Returns
The type referred to by the current array type, pointer type, or ByRef
type; or null
if the current type is not an array type, is not a pointer type, and is not passed by reference.
Exceptions
In all cases.
Remarks
A generic type parameter is a placeholder for a type. Because that type cannot be known in advance, there is no way to know whether it has an element type or what that element type might be. Any return value would be misleading, so the method throws a NotSupportedException.