Controlling and managing a complex program flow in C#
I have a program flow that is quite complex, with a lot of different
possibilities. How can this be programmed correctly, is there any
standardized method of converting this into decent C# code? With decent I
mean not one giant method full of if/else/goto statements.
Will this always be some kind of if/else construction or can we utilize a
state machine/automaton? I'm not sure how to get started here.
No comments:
Post a Comment