This post originated from an RSS feed registered with .NET Buzz
by Oliver Sturm.
Original Post: Using methods that get passed (Generic) delegates
Feed Title: Oliver Sturm's weblog
Feed URL: https://oliversturm.com/blog/blog/archives/category/programming/net/feed/
Feed Description: General musings and programming stuff, .NET category
I recently saw this question regarding the use of methods that get passed delegates - specifically, the .NET 2 collection classes make use of this, like for example the List<T> class, which takes a Predicate<T> as a parameter to its Find method.
Now the question is how to make use of this method? How does the [...]