A
Amien Crombie
Hi
I have a multi-dimensional array like this:
public double[,] mArray = new double[8,48];
Now I need to add another double[] to the 4th indices:
e.g.
double[] dbx = new dbx[48];
for (int i = 0; i < 48; i++)
{ // I add values to my array }
After this I need to add this array dbx to a predetermined index e.g 4
Something like this : mArray[4, dbx]; ????
Thanks
I have a multi-dimensional array like this:
public double[,] mArray = new double[8,48];
Now I need to add another double[] to the 4th indices:
e.g.
double[] dbx = new dbx[48];
for (int i = 0; i < 48; i++)
{ // I add values to my array }
After this I need to add this array dbx to a predetermined index e.g 4
Something like this : mArray[4, dbx]; ????
Thanks