Hi,
I need to import a large set of data from a list of lists.
Basically the first list represents the rows, than each element in that list contains a second list that should go on the columns.
I can't use a data table of fixed class, because the number of cells on the rows varies.
So
var List<List<ResultItem>> allItems;
With
public class ResultItem
{
public int Item { get; set; }
}
So allitems contains a list of items that each should go on a row.
Importdata does not handle this. ImportArray can do horizontal, but I need an array.
What is your recommended way to handle this with performance in mind?