August 2008
Intermediate to advanced
880 pages
18h 35m
English
IN THIS CHAPTER, you will learn about operators and control flow statements. Operators provide syntax for performing different calculations or actions appropriate for the operands within the calculation. Control flow statements provide the means for conditional logic within a program or looping over a section of code multiple times. After introducing the if control flow statement, the chapter looks at the concept of Boolean expressions, which are embedded within many control flow statements, pointing out that integers will not cast explicitly to bool and the advantages of this restriction. The chapter ends with a discussion of the primitive C# “preprocessor” and its accompanying directives.
Now that you ...