Hai Techies,
in C#, how can we define the multicast delegate which accepts a DateTime object and return a boolean.
Thanks
|
3
|
|
|
|
|
|
This is how to declare a delegate with the signature you describe. All delegates are potentially multicast, they simply require initialization. Such as:
Calling What this doesn't do is give you access to each return value. All you get is the last value returned. If you want to retrieve each and every value, you'll have to handle the multicasting manually like so:
|
|||
|
|
|
|
|
||
|
|
|
|
Any delegate can be a multicast delegate
EDIT: A delagate has a method GetInvocationList which returns a list with the attached methods. Here is a reference about Delegate invocation
|
|||
|