Jagged Arrays
This lesson will tell you about the jagged arrays in C# and how they differ from the multidimensional arrays.
We'll cover the following...
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 ...