| 1: | What are the similarities and differences between delegates and abstract methods? |
| 2: | Why is delegate a good name for the delegate construct? |
| 3: | Where in a program can a delegate definition be positioned? |
| 4: | Consider the following delegate definition: public delegate int Filtering(string str); Which of the following methods can instances of this delegate encapsulate?
|
| 5: | Why must multicast delegates have the return type void? |
| 6: |
|
| 7: | What is an event handler? |