string[,]
is a multidimensional array .
string[][]
is a Jagged array :
A jagged array is an array whose elements are arrays. The elements of
a jagged array can be of different dimensions and sizes. A jagged
array is sometimes called an "array of arrays."