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


23 Exceptions
23.1 Causes of exceptions
Paragraph 11 Exception can be thrown in two different ways. - 2 A throw statement (§15.9.5) throws an exception immediately and unconditionally. 3 Control never reaches the statement immediately following the throw.
- 4 Certain exceptional conditions that arise during the processing of C# statements and expression cause an exception in certain circumstances when the operation cannot be completed normally. 5 For example, an integer division operation (§14.7.2) throws a System.DivideByZeroException if the denominator is zero. 6 See §23.4 for a list of the various exceptions that can occur in this way.
|
Jagger Software Ltd |
Company # 4070126 |
VAT # 762 5213 42 |

