鉴于….
Public MasterList as IEnumerable(Of MasterItem) Public Class MasterItem(Of T) Public SubItems as IEnumerable(Of T) End Class
我想要一个IEnumerable(Of T),它将遍历MasterList中所有MasterItem的所有子项
我想认为有一个Linq设施来做这个,或者我俯瞰的扩展方法。我需要一个在VB9(2008)中工作的机制,因此不使用Yield。
你在寻找SelectMany()吗?
MasterList.SelectMany(master => master.SubItems)
对不起C#,不知道VB。