Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

For example:

int value = Int32.MaxValue;

unchecked
{
    value += 1;
}

In what ways would this be useful? can you think of any?

share|improve this question

1 Answer

up vote 10 down vote accepted

Use unchecked when:

  • You want to express a constant via overflow (this can be useful when specifying bit patterns)
  • You want arithmetic to overflow without causing an error

The latter is useful when computing a hash code - for example, in Noda Time the project is built with checked arithmetic for virtual everything apart from hash code generation. When computing a hash code, it's entirely normal for overflow to occur, and that's fine because we don't really care about the result as a number - we just want it as a bit pattern, really.

That's just a particularly common example, but there may well be other times where you're really happy for MaxValue + 1 to be MinValue.

share|improve this answer
Thank you very much! – Ken Sep 27 '11 at 12:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.