you know that in java you can use the rows of an array just by calling the index of the row, which is the equivalent in c#?
int[][] matrix = {{0,1},{2,3}};
If I want to use row 0, I only reference it like this:
int[] row1 = matrix[0];
row values will be:
{0,1}
Now how do I do this in c #? with the:
int[,] matrix = {{0,1},{2,3}};
If I refer to the array with a single value I receive:
int[] row = matrix[j];
I thank you