If i have some code like the following:
short myShortA = 54;
short myShortB = 12;
short myShortC = (short)(myShortA - myShortB);
Both operands are shorts and it's going into a short so why do i have to cast it?
|
feedback
|
|
Because there's no "short - short" operator. Both operands are promoted to int. From section 7.7.5 of the C# 3 spec:
(And then there's floating point subtraction.) | |||||||||||
feedback
|
|
To make things a little bit easier, you could simply write an extension method like this:
Others have answered your question... :) | |||
|
feedback
|