A delegate is a type that references a method.Once a delegate is assigned a method, it behaves exactly like that method. The delegate method can be used like any other method,with parameters and a return value.
Any method that matches the delegate’s signature,which consists of the return type and parameters,can be assigned to the delegate.
Delegates allow methods to be passed as parameters.It can be used to define callback methods.
Popularity: 1% [?]

November 12th, 2008
admin
Posted in
Tags:

