How do I convert a IEnumerable<IEnumerable<T>> to a List<List<T>>?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|
How about this ...
|
|||
|
|
|
Using combination of the List(IEnumerable) constructor and Linq:
|
|||
|
|
|
You might want to think why you are trying to do this. If it is because you have an enumerable of enumerables that have been returned by a LINQ query that you then want to refer to by an index, perhaps LINQ is not the most appropriate way to generate the data structure you want. Maybe you should refactor with methods that return lists rather than enumerables. |
|||
|
|