...

/

Jagged Arrays

Jagged Arrays

This lesson will tell you about the jagged arrays in C# and how they differ from the multidimensional arrays.

Jagged arrays are arrays that instead of primitive types, contain arrays (or other collections).

It’s like an array of arrays - each array element contains another array

They are similar to multidimensional arrays, but have a slight difference - as multidimensional arrays are limited to a ...