Tagged Questions

1
vote
2answers
873 views

How do I use the command pattern to reduce the complexity of a menu?

Say I have 4 buttons and I want each one to do a different thing. I don't want a big switch statement where I do a different thing based on which button was pushed, nor do I want a separate method for ...