E apenas por diversão (quase uma década depois), uma resposta também usando Genéricos, mas com um loop Stack e While, baseado na resposta aceita por @vidstige.
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);
}
}
}
Dada uma coleção, pode-se usar assim
var myNode = ListNodes.Descendants(x => x.Children).Where(x => x.Key == SomeKey);
ou com um objeto raiz
var myNode = root.Descendants(x => x.Children).Where(x => x.Key == SomeKey);