2

给定一个 .net 4. 集合,如果我想在 where 子句中传入我自己的自定义函数,我该怎么做(通过参数)?

谢谢

4

1 回答 1

6

Do you mean something like this?

public IEnumerable<string> FilterNames(Func<string, bool> filter)
{
    return people.Select(person => person.Name)
                 .Where(filter);
}
于 2012-04-05T16:32:29.013 回答