In c++ is possible to get a slice of multidimensional array, like
double parallelopipedPts[8][3];
parallelopipedPts[0];
parallelopipedPts[1];
...
parallelopipedPts[7];
In c# I am trying to emulate this and tried
double[][] parallelopipedPts = new double[8][];
parallelopipedPts[0];
parallelopipedPts[1];
...
parallelopipedPts[7];
However I am getting memory access issues
How to solve this?