I created a basic console application to make such a test.
short val = 32767;
val++;
Console.WriteLine(val);
This gives me -32768 as an expected result
short val = 32767;
val = val +1;
Console.WriteLine(val);
But this gives me this error
Error 1 **Cannot implicitly convert type 'int' to 'short'. An explicit conversion exists (are you missing a cast?)
I am curious about what causes this ?
Thanks in advance,