+ 1
Dynamic jagged array
is there another type of data structure similar to jagged Array that datas can be added at the end of it dynamically?
2 Answers
+ 9
I think this will help
https://www.sololearn.com/learn/1153/?ref=app
+ 2
yes, you can use a list of lists:
var l = new List<List<int>>();