The
delegation is a commonly used pattern in object-oriented programming.
It is a situation where an object, instead of performing a tasks
itself, delegates that task to
another, helper object. The helper
object is called the delegate.
Or
A delegate is a pointer to an
object with a set of methods the delegate-holder knows how to call.
In other words, it's a mechanism to enable specific callbacks from a
later-created object.
Loading

Jignesh TrivediPosted Jan 16, 2013, 10:57 PM
kindly go through below link
http://www.dotnetfunda.com/articles/article904-6-important-uses-of-delegates-and-events.aspx
http://msdn.microsoft.com/en-us/library/orm-9780596521066-01-17.aspx
it is good article on delegates.
chellappan pandiarajanPosted Jan 16, 2013, 10:03 AM
Read this...