I would like to be able to fusion an IEnumerable> into IEnumerable (i.e. merge all individual collections into one)
IEnumerable>
IEnumerable
var lists = GetTheNestedCase(); return from list in lists from element in list select element;
is another way of doing this using C# 3.0 query expression syntax.