Back in the day I used to study C++... we used to do arrays of arrays at school, now called jagged arrays I see in C#.
However, I need to use a List<> whereby I can just add another array to it.
In C#, which is the best way to achieve a similar logic, such that each individual 'cell' of a List<> actually contains a whole array? All the examples I have found, simply render the content of an array linearly into a List, cell for cell, which is not what I want.
Any help appreciated.
>.
– Ankur Oct 27 '15 at 06:49> holds..