Given....
Public MasterList as IEnumerable(Of MasterItem) Public Class MasterItem(Of T) Public SubItems as IEnumerable(Of T) End Class
I
You can achieve this by Linq with SelectMany
C# Code
masterLists.SelectMany(l => l.SubItems);
Best Regards