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.2 Blocks
15.2.1 Statement lists
Paragraph 11 A statement list consists of one or more statements written in sequence. 2 Statement lists occur in blocks (§15.2) and in switch-blocks (§15.7.2). statement-list : statement statement-list statement
Paragraph 21 A statement list is executed by transferring control to the first statement. 2 When and if control reaches the end point of a statement, control is transferred to the next statement. 3 When and if control reaches the end point of the last statement, control is transferred to the end point of the statement list.
Paragraph 31 A statement in a statement list is reachable if at least one of the following is true: - 2 The statement is the first statement and the statement list itself is reachable.
- 3 The end point of the preceding statement is reachable.
- 4 The statement is a labeled statement and the label is referenced by a reachable goto statement.
Paragraph 41 The end point of a statement list is reachable if the end point of the last statement in the list is reachable. |
Jagger Software Ltd |
Company # 4070126 |
VAT # 762 5213 42 |

