A friend asked me the differences between the two. Here goes the answer int[,] This represents a two dimensional rectangular array. Let's take the following array definition int [,] ar = new int [3, 3] { { 0, 1, 2}, { 3, 4, 5}, { 6, 7, 8}}; The array