Is there a quick way to get a flattened List<TElement>
from an ILookup<TKey, TElement>
that was created from the IEnumerable<TElement>
extension?
Updated with example
List<int> list = new List<int>();
var lookup = list.ToLookup(key => key);
list = lookup.?? // How to convert the lookup back to the list