Causes of Exceptions
Different situations give rise to exceptions:
Code defects, such as forgetting null checks causing NullReferenceExceptions
or passing invalid arguments to some method that signals the defect using an ArgumentException
or variation thereof.
Runtime disasters that prevent the CLR’s execution engine from continuing execution; for example, due to insufficient memory (OutOfMemoryException
) or a stack overflow.
Error conditions in ...
Get C# 5.0 Unleashed 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.