Math, asked by sujithcn5434, 1 year ago

Adding more than one function to a delegate is called

Answers

Answered by danielochich
0
A delegate object is normally constructed by providing the name of the method the delegate will wrap, or with an anonymous Method.

Once a delegate is instantiated, a method call made to the delegate will be passed by the delegate to that method.

The parameters passed to the delegate by the caller are passed to the method, and the return value, if any, from the method is returned to the caller by the delegate.

This is known as invoking the delegate.
Answered by Anonymous
5

Answer:

Step-by-step explanation:

A delegate object is normally constructed by providing the name of the method the delegate will wrap, or with an anonymous Method.

Once a delegate is instantiated, a method call made to the delegate will be passed by the delegate to that method.

The parameters passed to the delegate by the caller are passed to the method, and the return value, if any, from the method is returned to the caller by the delegate.

This is known as invoking the delegate.

Similar questions