Can you explain me;
- What is Predicate Delegate ?
- Where should we use predicates ?
- Any best practices about predicates ?
Descriptive source code will be appreciated,
Thanks for all replies !
|
feedback
|
|
A predicate is a function that returns So basically a predicate delegate is a reference to a function that returns
Now if you are using C# 3 you can use a lambda to represent the predicate in a cleaner fashion:
| |||||||||
feedback
|
|
Leading on from Andrew's answer with regards to c#2 and c#3 ... you can also do them inline for a one off search function (see below).
Hope this helps. | |||||
|
feedback
|
|
There's a good article on predicates here, although it's from the .NET2 era, so there's no mention of lambda expressions in there. | |||
|
feedback
|
|
Just a delegate that returns a boolean. It is used a lot in filtering lists but can be used wherever you'd like.
| ||||
|
feedback
|
|
If you're in VB 9 (VS2008), a predicate can be a complex function:
Or you can write your predicate as a lambda, as long as it's only one expression:
| |||
|
feedback
|