Briefly describe the two kinds of multidimensional arrays in .NET.There are two types of multidimensional arrays:
Rectangular arrays : These multidimensional arrays have all the sub-arrays with a particular dimension of the same length. You need use a single set of square brackets for rectangular arrays.
Jagged arrays : These multidimensional arrays have each sub-array as independent arrays of different lengths. With these you need to use a separate set of square brackets for each dimension of the array.
|