Predicate delegate in C#
Posted
by Jalpesh P. Vadgama
on ASP.net Weblogs
See other posts from ASP.net Weblogs
or by Jalpesh P. Vadgama
Published on Fri, 07 Sep 2012 19:18:02 GMT
Indexed on
2012/09/07
21:39 UTC
Read the original article
Hit count: 318
I am writing few post on different type of delegates and and this post also will be part of it. In this post I am going to write about Predicate delegate which is available from C# 2.0. Following is list of post that I have written about delegates.
Predicate delegate in C#:
As per MSDN predicate delegate is a pointer to a function that returns true or false and takes generics types as argument. It contains following signature.
Predicate<T> – where T is any generic type and this delegate will always return Boolean value. The most common use of a predicate delegate is to searching items in array or list. So let’s take a simple example. Following is code for that.
© ASP.net Weblogs or respective owner