With LINQ, how do I pass List <List <string> to List <string>?

I have an object

List<List<string>>

I need to bring this in

List<string>

I do not know how to do this with LINQ.

+5
source share
1 answer
List<string> results = original.SelectMany(x => x).ToList();
+13
source