Chapter 6
Managing errors and exceptions
After completing this chapter, you will be able to:
Handle exceptions by using the
try
,catch
, andfinally
statements.Control integer overflow by using the
checked
andunchecked
keywords.Raise exceptions from your own methods by using the
throw
keyword.Ensure that code always runs, even after an exception has occurred, by using a
finally
block.
You have now seen the core C# statements that you need to know to perform common tasks such as writing methods, declaring variables, using operators to create values, writing if
and switch
statements to run code selectively, and writing while
, for
, and do
statements to run code repeatedly. However, the previous chapters haven’t considered the possibility (or ...
Get Microsoft Visual C# Step by Step, 10th Edition now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.