I have a variable IEnumerable<IEnumerable<int>>. I am trying to somehow combine it in IEnumerable<int>, which lists all the integers in order. (All integers from the first set, then all integers from the second, etc.). I looked at the LINQ aggregation method, but the only examples I found were string concatenation, and I cannot figure out how to apply it here.
source
share