Possible Duplicate:
What is differences between Multidimensional array and Array of Arrays in C#?
What's the difference between arrays of arrays and multidimensional arrays?
TYPE [,] ARRAY_NAME;
TYPE [][] ARRAY_NAME;
I can't differ between them , the first type declare an array of tow dimensional and the second also does the same thing As I think ?