I’ve an array like this one:
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();
Can I fill the dataTable with the array data?
Try something like this: