One could say that the runtime adds or subtracts 65536 as many times as is needed to get a number within the range of the short (System.Int16) type.
If you know a lot of pure math, instead of explaining it through the internal binary representation (which is also cool), you can understand it from modular arithmetic.
For this, consider the type short to be the integers modulo 65536, also written as ℤ/65536ℤ. Each member of ℤ/65536ℤ is a congruence class, i.e. a set of numbers all having the same remainder when divided by 65536. Now, each congruence class has an infinitude of different members ("representatives"). If you pick one, you get all the others by repeatingly adding or subtracting 65536.
With the short data type, we pick the unique representative in the interval -32768 through +32767. Then the ushort is the same thing, only do we pick the representative in 0 through 65535.
Now the cool thing about ℤ/65536ℤ is that it forms a ring in which we have addition, subtraction and multiplication (but not division). And actually, in unchecked context, with short x,y;, the C# operations
(short)(x + y)
(short)(x - y)
(short)(x * y)
correspond exactly to the arithmetic in ℤ/65536ℤ. (We have to cast back to short here because technically C# defines the operators only for int, uint, long, and ulong.)
In the same way, sbyte and byte can be thought of as the ring ℤ/256ℤ, int and uint as ℤ/4294967296ℤ, and long and ulong as ℤ/18446744073709551615ℤ.
Note, however, that because these moduli are not primes, division is not possible in the ring. For example, no int X satisfies
unchecked( 10 * X == 35 ) // integers Int32
and therefore it's not clear what 35/10 should be. On the other hand, two X satisfy
unchecked( 10 * X == 36 ) // integers Int32
but which of them should be 36/10?
However, exactly one int X makes
unchecked( 11 * X == 35 ) // integers Int32
true. We're having luck because 11 is relatively prime to 4294967296. The solution X is 1952257865 (check for yourself), so the quotient 35/11 is in a sense that number X.
Conclusion: The integer operations +, -, and * of C# can be interpreted as simply the ring operations in ℤ/nℤ. But the / operation is in no way related to the ring!
y = checked((short)x)- what happens? – Andras Zoltan Aug 7 '12 at 14:12