TypeBuilder.GetGenericArguments Method

Definition

Returns an array of Type objects representing the type arguments of a generic type or the type parameters of a generic type definition.

public:
 override cli::array <Type ^> ^ GetGenericArguments();
public override Type[] GetGenericArguments ();
override this.GetGenericArguments : unit -> Type[]
Public Overrides Function GetGenericArguments () As Type()

Returns

Type[]

An array of Type objects. The elements of the array represent the type arguments of a generic type or the type parameters of a generic type definition.

Remarks

The elements of the returned array are in the order in which they appear in the list of type parameters for the generic type definition.

A TypeBuilder object represents a generic type definition if the DefineGenericParameters method has been used to give it generic type parameters. This method retrieves the GenericTypeParameterBuilder objects that represent the generic type parameters.

For more information on generic types in reflection and a list of the invariant conditions for terms used in generic reflection, see the Type.IsGenericType property.

Applies to

See also