C# Checked and Unchecked Statements
Tags:
C#
, 2003
, Language
, Experienced
Checked allows you to force C# to raise an exception whenever stack overflow (or underflow) occurs due to type conversion issues. Unchecked will allow you to ignore these exceptions when the C# project is set to raise these types of exceptions. This video explains both of these concepts thoroughly.