I have a 2-d int array say
int[,] data = new int[N, numOfCol];
Now this is also numOfCol number of 1-d array of length N. Correct?
Suppose numOfCol is 3.
How do we represent those 1-d arrays?
data[,0] data[,1] and data[,2]
gives me wrong syntax in Visual Studio.