Lecture overview -- Keyboard shortcut: 'u'  Previous page: Exception Handling Approaches -- Keyboard shortcut: 'p'  Next page: Object-oriented Exception Handling [Section] -- Keyboard shortcut: 'n'  Lecture notes - all slides and notes together  slide -- Keyboard shortcut: 't'  Textbook -- Keyboard shortcut: 'v'  Help page about these notes  Alphabetic index  Course home  Page 11 : 30
Object-oriented Programming in C#
Exception Handling
Mixing normal and exceptional cases

Arbitrary mixing of normal and exceptional program aspects can be very confusing

/user/normark/oop-csharp-1/sources/c-sharp/io/file-copy/mycopy1.csA file copy program. This program is explained


/user/normark/oop-csharp-1/sources/c-sharp/io/file-copy/mycopy-error-demo.csA file copy program with excessive error handling. This program is explained


The normal program almost disappears in the error handling code