Answers for "Flatten a list of lists in C#"

C#
0

Flatten a list of lists in C#

var list = listOfLists.SelectMany(d => d.InnerList).ToList();
Posted by: Guest on August-16-2021

Code answers related to "Flatten a list of lists in C#"

C# Answers by Framework

Browse Popular Code Answers by Language