递归LINQ和呢?递归、LINQ

由网友(不忘初心)分享简介:我想找到谁是左撇子的所有的人用递归LINQ 的通过扩展方法。I want to find all Persons who are left handed using recursive linq via extension method.我已经看到了这个回答但与这是一个问题(恕我直言) :(如扩展方法,因为静态情况...

我想找到谁是左撇子的所有的人用递归LINQ 的通过扩展方法。

I want to find all Persons who are left handed using recursive linq via extension method.

我已经看到了这个回答但与这是一个问题(恕我直言) :(如扩展方法,因为静态情况下的应用时)的

I've seen this answer but there is a problem (imho) with the this : (when applied as extension method because of the static context)

关键字这不是静态方法有效

keyword this is not valid in static method

因此​​,这里是我已经试过:

So here is what i've tried :

我有一个类:

public class Person
{
        public  List<Person> Children = new List<Person>();
        public bool IsLeftHanded;
}

这里是code为externsion方式:

And here is the code for the externsion method :

public static class Extensions
{   
        public static IEnumerable<Person> DescendantsAndSelf(this IEnumerable<Person> list)
        {
         yield return this;
        foreach (var item in list.SelectMany(x => x.Children.DescendantsAndSelf()))
        {
            yield return item;
        }
    }
}

但与收益率的回报这是一个问题;

问:

我怎样才能修订我的code,以支持的我和我的孩子的的猫腻? (目标:找到谁是左手所有人)

How can I fix my code in order to support the "me and my childs" trick ? ( goal : find all persons who are left handed)

NB

请注意,我想使用LINQ和递归以获得经验与LINQ使用递归。的

推荐答案

这是一个将工作在任何收集更宽泛的版本。

This is a more generic version that would work on any collection.

public static IEnumerable<T> SelectDescendents<T>(this IEnumerable<T> source, Func<T, IEnumerable<T>> selector)
{
        foreach(var item in source)
        {
            yield return item;
            foreach(T item2 in SelectDescendents(selector(item), selector))
                yield return item2;
        }
}

用法

Persons.SelectDescendents(p => p.Children);
阅读全文

相关推荐

最新文章