Flatten List in LINQ

Try SelectMany()

var result = iList.SelectMany( i => i );

Leave a Comment