Answered Questions

  • Multicast Delegate

    What is multicast delegate? When it is used?

    Naveen Shivanadri

    • Sep 18th, 2016

    Multicast delegate is useful when the application has many methods (each method for each purpose) which are no return type (void) and those methods are using same parameter. In this case we will use ...

    Reeshabh Choudhary

    • Nov 4th, 2015

    A useful property of delegate objects is that multiple objects can be assigned to one delegate instance by using the + operator. The multicast delegate contains a list of the assigned delegates. When...