Multicast Delegates
Introduction In earlier post we have discussed about the Delegates, a delegate holds the reference of a method. As the name suggests, a Multicast delegate is a delegate that holds the reference of more than one method. The only requisite is that all such methods should have the same signature, i.e. the same return type and the same number and type of parameters. When we … Continue reading Multicast Delegates