英語で読む 編集

次の方法で共有


Type.GetGenericArguments Method

Definition

Returns an array of Type objects that represent the type arguments of a closed generic type or the type parameters of a generic type definition.

public virtual Type[] GetGenericArguments ();

Returns

Type[]

An array of Type objects that represent the type arguments of a generic type. Returns an empty array if the current type is not a generic type.

Exceptions

The invoked method is not supported in the base class. Derived classes must provide an implementation.

Examples

The following code example uses the GetGenericArguments method to display the type arguments of a constructed type and the type parameters of its generic type definition.

This code example is part of a larger example provided for the IsGenericTypeDefinition property. See the larger example for sample output.

if (t.IsGenericType)
{
    // If this is a generic type, display the type arguments.
    //
    Type[] typeArguments = t.GetGenericArguments();

    Console.WriteLine("\tList type arguments ({0}):", 
        typeArguments.Length);

    foreach (Type tParam in typeArguments)
    {
        // If this is a type parameter, display its
        // position.
        //
        if (tParam.IsGenericParameter)
        {
            Console.WriteLine("\t\t{0}\t(unassigned - parameter position {1})",
                tParam,
                tParam.GenericParameterPosition);
        }
        else
        {
            Console.WriteLine("\t\t{0}", tParam);
        }
    }
}

Remarks

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

  • If the current type is a closed constructed type (that is, the ContainsGenericParameters property returns false), the array returned by the GetGenericArguments method contains the types that have been assigned to the generic type parameters of the generic type definition.

  • If the current type is a generic type definition, the array contains the type parameters.

  • If the current type is an open constructed type (that is, the ContainsGenericParameters property returns true) in which specific types have not been assigned to all of the type parameters and type parameters of enclosing generic types or methods, the array contains both types and type parameters. Use the IsGenericParameter property to tell them apart. For a demonstration of this scenario, see the code example for the ContainsGenericParameters property.

For a list of the invariant conditions for terms used in generic reflection, see the IsGenericType property remarks.

Applies to

製品 バージョン
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1

See also