I'd like to know that ,what is the difference between delegates and function,So far i have seen that both works in similar manner.
I merely found the difference is delegates are type safe.None else.
I'd like to know that in what situation we should go for delegates.
If some one can tell me real faces of delegates,I'll be highly grateful.
Thanks
Sachin Kalia

SUNIL GUTTAPosted Apr 28, 2013, 3:39 AM
Delegates brings REUSABILITY on to table & with that performance i.e we don"t need to create objects for every function as we have to :) we can just create delegate obj and call the function(method) directly
regards
VulpesPosted Apr 27, 2013, 1:56 PM
For example, if a method is passed a collection of ints and performs some operation on them, a delegate could also be passed which constrained the operation of the method to only those ints which were even numbers, were less than 100 or filtered them in some other way.