Ve sadece eğlence için (neredeyse on yıl sonra), Generics kullanarak, ancak @vidstige tarafından kabul edilen yanıta dayanan bir Yığın ve Süre döngüsüyle bir yanıt.
public static class TypeExtentions
{
public static IEnumerable<T> Descendants<T>(this T root, Func<T, IEnumerable<T>> selector)
{
var nodes = new Stack<T>(new[] { root });
while (nodes.Any())
{
T node = nodes.Pop();
yield return node;
foreach (var n in selector(node)) nodes.Push(n);
}
}
public static IEnumerable<T> Descendants<T>(this IEnumerable<T> encounter, Func<T, IEnumerable<T>> selector)
{
var nodes = new Stack<T>(encounter);
while (nodes.Any())
{
T node = nodes.Pop();
yield return node;
if (selector(node) != null)
foreach (var n in selector(node))
nodes.Push(n);
}
}
}
Bir koleksiyon verildiğinde bu şekilde kullanılabilir
var myNode = ListNodes.Descendants(x => x.Children).Where(x => x.Key == SomeKey);
veya bir kök nesneyle
var myNode = root.Descendants(x => x.Children).Where(x => x.Key == SomeKey);