c# – 获取T数组的类型,而不指定T – Type.GetType(“T []”)

前端之家收集整理的这篇文章主要介绍了c# – 获取T数组的类型,而不指定T – Type.GetType(“T []”)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试创建一个引用泛型类型数组的类型,而不指定泛型类型.也就是说,我想做相当于Type.GetType(“T []”).

我已经知道如何使用非数组类型执行此操作.例如.

Type.GetType("System.Collections.Generic.IEnumerable`1")
// or
typeof(IEnumerable<>)

这是一些重现问题的示例代码.

using System;
using System.Collections.Generic;

public class Program
{
    public static void SomeFunc<T>(IEnumerable<T> collection) { }

    public static void SomeArrayFunc<T>(T[] collection) { }

    static void Main(string[] args)
    {
        Action<Type> printType = t => Console.WriteLine(t != null ? t.ToString() : "(null)");
        Action<string> printFirstParameterType = methodName =>
            printType(
                typeof(Program).GetMethod(methodName).GetParameters()[0].ParameterType
                );

        printFirstParameterType("SomeFunc");
        printFirstParameterType("SomeArrayFunc");

        var iEnumerableT = Type.GetType("System.Collections.Generic.IEnumerable`1");
        printType(iEnumerableT);

        var iEnumerableTFromTypeof = typeof(IEnumerable<>);
        printType(iEnumerableTFromTypeof);

        var arrayOfT = Type.GetType("T[]");
        printType(arrayOfT); // Prints "(null)"

        // ... not even sure where to start for typeof(T[])
    }
}

输出是:

System.Collections.Generic.IEnumerable`1[T]
T[]
System.Collections.Generic.IEnumerable`1[T]
System.Collections.Generic.IEnumerable`1[T]
(null)

我想纠正最后一个“(null)”.

这将通过指定方法签名用于通过反射获取函数的重载:

var someMethod = someType.GetMethod("MethodName",new[] { typeOfArrayOfT });
// ... call someMethod.MakeGenericMethod some time later

我已经通过过滤GetMethods()的结果来获取我的代码,所以这更像是一种知识和理解的练习.

解决方法

简单:
var arrayOfT = typeof(IEnumerable<>).GetGenericArguments()[0].MakeArrayType();
原文链接:https://www.f2er.com/csharp/239089.html

猜你在找的C#相关文章