When I implement a chaining such as in:
ToUpper().ToString(). ....
Would that chaining also be considered as a callback ?
|
|
When I implement a chaining such as in: ToUpper().ToString(). .... Would that chaining also be considered as a callback ?
|
|||
|
|
|
|
Usually a callback is in the form of delegate that is passed as an argument to another object or method call. It allows a lower-level object to call a method defined in a higher level object.
|
||
|
|
|
|
No, it would not be. |
||
|
|
|
|
This is a very quick overview of what a call back is and what you use it for. |
||
|
|
|
|
No it wouldn't, to use a simple example. This:
Is equivalent to this:
|
||
|
|