i have a record of a gridviewrowcollection. and i'm having issues with adding them to the grid.
GridViewRowCollection dr = new GridViewRowCollection(list);
StatisticsGrid.DataSource = dr;
doesnt work.
StatisticsGrid.Rows
does have an add method, what is strange
how can i add a gridviewrowcollection without creating a datatable + binding it to the datasource??
thanks in advance