InterviewSolution
Saved Bookmarks
| 1. |
What is the C# Equivalent to C++ Function Pointers? |
|
Answer» Delegates is the C# EQUIVALENT to function pointers. However, unlike function pointers, the delegates ENCAPSULATE both an OBJECT instance and a method. Delegates are fully object oriented and allow methods to be passed as PARAMETERS. |
|