0
Can I make a List where members are other Lists?
2 Réponses
+ 3
Yes you can. The definition can be something like that:
List<List<x>> myList = new List<List<x>>();
where 'x' is the List type of the inside.
+ 1
Sure, might get a bit 'messy' but would definitely work.