[Previous] [Contents] [Next]

Summary

The C# conditional statements enable you to control program flow. The three different categories of flow statements include the selection statements, such as if and switch, the iteration statements (while, for,and foreach) and the different jump statements (break, continue, goto,and return). Determining the best statements to use based on the material in this chapter will help you write better structured and more maintainable applications.

[Previous] [Contents] [Next]