What is the difference between these two arrays?
int[][] arrayA;
int[,] arrayB;
The way I understand it is that array A is an "array of arrays" and array B is more similar to a table. Is this correct?
What is the difference between these two arrays?
int[][] arrayA;
int[,] arrayB;
The way I understand it is that array A is an "array of arrays" and array B is more similar to a table. Is this correct?