Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
.net 4.コレクションがある場合、where句で独自のカスタム関数を渡したい場合、(パラメーターを介して)これをどのように行うことができますか?
ありがとう
このような意味ですか?
public IEnumerable<string> FilterNames(Func<string, bool> filter) { return people.Select(person => person.Name) .Where(filter); }