show/hide this revision's text 2 added 127 characters in body

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 the conv.i4 instruction mentioned in the comment.
  • *(short*)c = b or assignment to a struct member where the struct is marked StructLayout.Explicit or 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).
show/hide this revision's text 1

The evaluation stack doesn't have a representation smaller than 32-bits. 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.
  • *(short*)c = b or assignment to a struct member where the struct is marked StructLayout.Explicit or 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).