cant seem to figure out datatables. Im trying to put a 2-dimensional double array into a datatable. i figured out at least how to get the columns and rows set up but not how to populate with the array data. help please!!!!
VB Code:
  1. for (int j = 0; j < YBins ; j++)
  2.             {
  3.                dtOrig.Columns.Add("Y" + Convert.ToString(j));
  4.             }
  5.             for (int i = 0; i < XBins; i++)
  6.             {
  7.                 dtOrig.Rows.Add("X" + Convert.ToString(i));
  8.             }