InterviewSolution
| 1. |
What Is Delegate Command? |
|
Answer» In between the invoker and the receiver you have an obstruction layer that does not ALLOW the invoker and the receiver to explicitly know about each other. This is typically represented as an interface abstraction EXPOSED to the invoker and a CONCRETE implementation of that interface is CAPABLE of calling the receiver. In between the invoker and the receiver you have an obstruction layer that does not allow the invoker and the receiver to explicitly know about each other. This is typically represented as an interface abstraction exposed to the invoker and a concrete implementation of that interface is capable of calling the receiver. |
|