The evaluation stack doesn't have a representation smaller than 32-bits. [Edit, in most cases (thanks for the update from the comment :)] Until you actually store a 16-bit value somewhere other than the stack, nothing special happens because the short and int are the same size. Here are the only operations where you would see a difference:
b = (short)a
Will sign-extend bit 16 of the result to a full 32-bit wide variable. This is theconv.i4instruction mentioned in the comment.*(short*)c = bor assignment to a struct member where the struct is markedStructLayout.Explicitor has a packing less than 4.
Will only write the lower 16 bits of its 32-bit representation.checked { b = (short)a; }
Will throw an exception if(a < -32768 || a > 32767).
