Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

TypeBuilder::GetGenericArguments Method ()

 

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

Namespace:   System.Reflection.Emit
Assembly:  mscorlib (in mscorlib.dll)

public:
virtual array<Type^>^ GetGenericArguments() override

Return Value

Type: array<System::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.

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.

.NET Framework
Available since 2.0
Silverlight
Available since 2.0
Return to top
Show:
© 2017 Microsoft