|
- c# - What is a callback? - Stack Overflow
A callback can be implemented as a delegate to a method, but you could equally say that passing an object that supports a callback method on its interface is a callback
- What is a callback? What is it for and how is it implemented in for . . .
A callback is a hook into the code that is executing to allow you to provide customised features at known points in the process It allows for generalised control structures to perform customised operations which are specified by your code which is called from within them, hence the term "call back" - it calls back into your code
|
|
|