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.11 The checked and unchecked statements
Paragraph 11 The checked and unchecked statements are used to control the overflow checking context for integral-type arithmetic operations and conversions. checked-statement : checked block unchecked-statement : unchecked block
Paragraph 21 The checked statement causes all expressions in the block to be evaluated in a checked context, and the unchecked statement causes all expressions in the block to be evaluated in an unchecked context.
Paragraph 31 The checked and unchecked statements are precisely equivalent to the checked and unchecked operators (§14.5.12), except that they operate on blocks instead of expressions. |
Jagger Software Ltd |
Company # 4070126 |
VAT # 762 5213 42 |

