
What
is the need for Command Pattern
|
class commandClass
{
protected receiverClass receiverObj;
public commandClass(receiverClass obj) {
receiverObj = obj;
}
public virtual void Execute() {
receiverObj.performAction();
}
}
_______________________________________________________________________
FREE Subscription
Subscribe
to our mailing list and receive new articles
through email. Keep yourself updated with latest
developments in the industry.
Note
: We never rent, trade, or sell my email lists to
anyone.
We assure that your privacy is respected
and protected.
Visit .NET Programming Tutorial Homepage
______________________________________________________