Abdalla Omran

Abdalla Omran

  • NA
  • 334
  • 31.6k

What is a list inside a list (jagged list) ?

Feb 5 2020 3:10 AM
I can't find a clear explanations or an example about jagged list or a list inside a list 
like : 
  1. var listOfList = new List<List<int>>();  
or 
  1. List<List<int>> list = new List<List<int>>();  
what is the benefit for that and how could be helpfull ? 
 

Answers (2)