Table of Contents 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 Notes DownloadECMA-334 C# Language Specification


15 Statements
15.6 Expression statements
Paragraph 11 An expression-statement evaluates a given expression. 2 The value computed by the expression, if any, is discarded. expression-statement : statement-expression ; statement-expression : invocation-expression object-creation-expression assignment post-increment-expression post-decrement-expression pre-increment-expression pre-decrement-expression
Paragraph 21 Not all expressions are permitted as statements. [Note: In particular, expressions such as x + y and x == 1, that merely compute a value (which will be discarded), are not permitted as statements. end note]
Paragraph 31 Execution of an expression statement evaluates the contained expression and then transfers control to the end point of the expression statement. 2 The end point of an expression-statement is reachable if that expression-statement is reachable. |
Jagger Software Ltd |
Company # 4070126 |
VAT # 762 5213 42 |

