繁体   English   中英

泛型类型扩展方法 ToMultidimensionalArray

[英]Generic Type Extension Method ToMultidimensionalArray

我目前正在尝试使用具有泛型类型的扩展方法将IEnumerable<T>转换为 T2 类型的二维数组。 您还应该能够选择要包含在该数组中的 T 的哪些属性。

这是我到目前为止得到的:

public static T2[][] ToMultidimensionalArray<T, T2>(this IEnumerable<T> enumerable, int count, params string[] propNames)
    {
        IEnumerator<T> enumerator = enumerable.GetEnumerator();
        T2[][] resultArray = new T2[count][];
        int i = 0;
        int arrLength = propNames.Length;
        while (enumerator.MoveNext())
        {
            resultArray[i] = new T2[arrLength];
            int j = 0;
            foreach(string prop in propNames)
            {
                resultArray[i][j] = ((T)enumerator.Current).//How do I access the properties?
                j++;
            }
            i++;
        }
        return resultArray;
    }

我在访问foreach -Loop 中enumerator.Current的属性时遇到问题。

我正在使用 .NET-Framework 4.0。

任何投入将不胜感激。

谢谢,

丹尼斯

一般来说,这个问题可以使用反射来解决:

public static T2[][] ToMultidimensionalArray<T, T2>(
                                                this IEnumerable<T> enumerable,
                                                int count,
                                                params string[] propNames)
{
    T2[][] resultArray = new T2[count][];
    int i = 0;
    int arrLength = propNames.Length;
    foreach (var item in enumerable)
    {
        resultArray[i] = new T2[arrLength];
        int j = 0;
        foreach (string prop in propNames)
        {
            // Get the required property info using reflection
            var propertyInfo = typeof(T).GetProperty(prop);
            // Extract the getter method of the property
            var getter = propertyInfo.GetGetMethod();
            // Invoke the getter and get the property value
            var value = getter.Invoke(item, null);
            // Cast the value to T2 and store in the array
            resultArray[i][j] = (T2) value;
            j++;
        }
        i++;
    }
    return resultArray;
}

我将问题理解为有一个T s 集合,其中这些对象具有T2类型的属性。 目标是获取每个 object 的属性并将它们放入多维数组中。 如我错了请纠正我。

你的意思是 (T2)typeof(T).GetProperty(prop).GetValue(enumerator.Current, null);

但我无法理解你想要什么。 我认为这种方法行不通。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM