Skip to content

Instantly share code, notes, and snippets.

@azcoov
Created March 17, 2011 02:22
Show Gist options
  • Save azcoov/873739 to your computer and use it in GitHub Desktop.
Save azcoov/873739 to your computer and use it in GitHub Desktop.
Check for an Overflow Exception
try
{
checked
{
int x = int.MaxValue;
int++;
}
}
catch (OverflowException ex)
{
Console.WriteLine(ex.Message);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment