我正在尝试构建一个通用方法,它将任何 IEnumerable 转换为对象 [,]。这样做的目的是通过 ExcelDNA 插入 excel,理想情况下需要二维对象数组。
我是反思的新手,需要一些认真的帮助来填补这里的空白。下面发布的代码是我到目前为止所拥有的,我需要的是在外部循环中 DataSource 的索引 i 处获取 T 的属性。然后在内部循环中依次获取每个属性的值并插入到 object[,] 中。
任何帮助表示赞赏。谢谢理查德
public object[,] ConvertListToObject<T>(IEnumerable<T> DataSource)
{
int rows = DataSource.Count();
//Get array of properties of the type T
PropertyInfo[] propertyInfos;
propertyInfos = typeof(T).GetProperties(BindingFlags.Public);
int cols = propertyInfos.Count(); //Cols for array is the number of public properties
//Create object array with rows/cols
object[,] excelarray = new object[rows, cols];
for (int i = 0; i < rows; i++) //Outer loop
{
for(int j = 0; j < cols; j++) //Inner loop
{
object[i,j] = //Need to insert each property val into j index
}
}
return excelarray;
}
}