Skip to content

Instantly share code, notes, and snippets.

@wullemsb
Last active December 16, 2015 11:18
Show Gist options
  • Save wullemsb/5425849 to your computer and use it in GitHub Desktop.
Save wullemsb/5425849 to your computer and use it in GitHub Desktop.
An example of the checked keyword in C#
int i = int.MaxValue -50;
checked {
i+= 100; // OverflowException: "Arithmetic operation resulted in an overflow."
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment