C# Programming - Delegates - Discussion

Discussion Forum : Delegates - General Questions (Q.No. 1)
1.
Which of the following statements is incorrect about delegate?
Delegates are reference types.
Delegates are object oriented.
Delegates are type-safe.
Delegates serve the same purpose as function pointers in C and pointers to member function operators in C++.
Only one method can be called using a delegate.
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
21 comments Page 3 of 3.

Bindu said:   1 decade ago
It is possible for a delegate to call more than one function at a time when all the methods that point to that delegate has same method signature, and += operator is used to append method references to the delegate.


Post your comments here:

Your comments will be displayed after verification.