I have an array like this:
const int dim = 1000; double[,] array = new double[dim, dim]; Random ran = new Random(); for (int r = 0; r < dim; r++) for (int c = 0; c < dim; c++) array[r, c] = (ran.Next(dim)); DataTable dataTable = new DataTable();
Is it possible to populate dataTable with array data?
arrays c # datatable
Jaime oro
source share