My apologies if this question already exists, but I have not found it here on SO. That's why I ask it. Anyway...
Say you have following very simple method:
public int Square(int i)
{
return i * i;
}
When I use the method like this:
int result = Square(Int32.MaxValue);
Console.WriteLine("Result: " + result);
This is the result:
Result: 1
Why does this compile and execute succesfully, and why is 1 returned?
It compiles, but it runs to completion only in an
unchecked
context, which is the compiler default. Adding achecked
block (or specifying the/checked
compiler option) will give you an overflow exception at runtime.If in an unchecked context, the result is
1
because the multiplication goes like this:The high-order bits that overflow are discarded, leaving you with
0x 0000 0001
.