For easily finding values in a huge Array I want to use the "find"-Command of a List. The problem is, right now it is not a List, it is a 3D-Array.
This means, i need to convert my double[,,]-array to a
List<List<List<double>>> blabla
Example of an Array:
double[,,] myArray = new double[2,3,3];
Could look then like the following:
myArray[1,:,:] = 1.11 1.12 1.13
1.21 1.22 1.23
1.31 1.32 1.33
myArray[2,:,:] = 2.11 2.12 2.13
2.21 2.22 2.23
2.31 2.32 2.33
Can this be done by a one-liner using somehow the "Cast" command?
Thanks
