SoloLearn C# Tutorial – Multidimensional and Jagged Arrays
Day 52 #100DaysOfCode

Okay, so arrays. Easy enough. I am no stranger to programming, just new to C#. When I learned about arrays in C# programming I knew it would lead to multidimensional arrays. The one thing I didn’t realize was that there would be arrays beyond the two-dimensional arrays I expected. To find out that three-dimensional arrays, or multi-dimensional arrays beyond that were possible… wow. It may take a little practice to fully get my head around it.
Then I get hit with jagged arrays! Seriously? Now we are getting abstract by building arrays out of arrays!

I can see the advantage, though, because that is a pretty tight way to store a lot of data. I am looking forward to seeing this put into practice.