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.
List<string> results = original.SelectMany(x => x).ToList();