.net – 如何聚合T的多个IEnumerables

前端之家收集整理的这篇文章主要介绍了.net – 如何聚合T的多个IEnumerables前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
鉴于….
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。

原文链接:https://www.f2er.com/javaschema/282191.html

猜你在找的设计模式相关文章