I'm trying the following:
short value1 = 4;
short value2 = 2;
short result = value1 / value2;
Cannot implicitly convert type 'int' to 'short'. An explicit conversion exists (are you missing a cast?)
Is there no such thing as division for short?
Is there a reason why short/short returns an int or just because?
The reason I'm wondering, is because I can divide int's eventhough its limitations (cast back from float)