How to merge a list of lists with same type of items to a single list of items? October 3, 2022 by Tarik Use the SelectMany extension method list = listOfList.SelectMany(x => x).ToList();