If I have a lot of commands (some with variable parameters), what is the most efficient way of registering them ?
In other words, say I've got a base command Do (its dumb but its simple like me ). It can have variable parameters associated with it such as:
Do
Do Something
Do Something ToSomethingElse
Do Help
Or in other words, is there I way I can register just the single "Do" command and pass it parameters for which "Do" to "do" ?
What is the best way to implement this ?