Question:Define Delegates and Events. Define Func and Action Delegates.
Answer Delegates: A delegate dynamically wires up a method caller to its target method. There are two aspects to a delegate: type and instance.Events: Events are pairs of methods, appropriately decorated in IL to tie them together and let languages know that the methods represent events. The methods correspond to add and remove operations.
+ Report
Define Delegates and Events. Define Func and Action Delegates.