How to merge a list of lists with same type of items to a single list of items?
Here's the C# integrated syntax version:
var items =
from list in listOfList
from item in list
select item;
Use the SelectMany extension method
list = listOfList.SelectMany(x => x).ToList();