It is not possible for a delegate to wrap more than 1 method

A) True
B) False

Showing Answers 1 - 4 of 4 Answers

Ravindra Sanaga

  • Feb 14th, 2006
 

False

In some cases you may want to call not just one, but two or more methods through a single delegate. This is known as multicasting. You accomplish multicasting by encapsulating the various methods in delegates, and then you combine the delegates using the Delegate.Combine shared method. The Combine method takes an array of delegates as a parameter and returns a new delegate that represents the combination of all the delegates in the array.

  Was this answer useful?  Yes

delegate are used to refer one or more methods.If delegate refers only one method then  it is called singlecast delegate.if delegate refers two or more methods then it is called multicast delegate.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions