InterviewSolution
| 1. |
what is multicast delegate |
|
Answer» The C# LANGUAGE support feature that is known as the multicast delegate. Any delegate that has a void return type is called multicast delegate. A multicast delegate can be assigned and invoke multiple methods. |
|