Solved

Assume You Declare Three Delegates Named Delegate1, Delegate2, and Delegate3

Question 30

Essay

Assume you declare three delegates named delegate1, delegate2, and delegate3.You then assign a reference to method M1() to delegate1, and a reference to method M2() to delegate2.How do you make delegate3 into a composed delegate that executes both M1() and M2()? What are the rules concerning return type and parameter list for composed delegates?

Correct Answer:

verifed

Verified

When the statement delegate3 = delegate1...

View Answer

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions