What goes on at a low level when I do this?
Int32 a = 0;
Int16 b = 50;
a = b;
|
|
|
|
|
|
|
Something like this:
At a lower level, it depends on the machine architecture and optimization level. Code like this specifically, that has no effect, will probably just be omitted altogether. Otherwise, it'll be simple code, perhaps like this:
|
||||||
|
|
|
From Reflector:
At the IL level, nothing special happens in the assignment, but notice that When the code is JIT compiled, the resulting assembly code probably just promotes the value 50 to a 32-bit wide value. |
||
|
|
|
|
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
|
||||
|