Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What is Delegation?
What is Delegation?
✍: Guest
A delegate acts like a strongly type function pointer. Delegates can invoke the methods that they reference without making explicit calls to those methods.
Delegate is an entity that is entrusted with the task of representation, assign or passing on information. In code sense, it means a Delegate is entrusted with a Method to report information back to it when a certain task (which the Method expects) is accomplished outside the Method's class.
2013-11-19, 2188👍, 0💬
Popular Posts:
How To Fade Image Edges to Background Colors? - PSP Tutorials - Fading Images to Background Colors w...
What is Traceability Matrix? Traceability Matrix is one of the document will prepare by QA.To make s...
Which bit wise operator is suitable for turning off a particular bit in a number? The bitwise AND op...
What is the output of printf("%d")? 1. When we write printf("%d",x); this means compiler will print ...
Would I use print "$a dollars" or "{$a} dollars" to print out the amount of dollars in this example?...