0
comment
comment
on 1/15/2012 1:42 PM
C# By default, arithmetic operations and conversions in C# execute in an unchecked context, you can use the checked keyword to switch a block of code to the checked context so that any arithmetic overflow that occurs in that block of code will cause the OverflowException to be thrown: However, the scope of the checked [...]