Is there a way to specify that my variable is a short int? I am looking for something similar to M suffix for decimals. For decimals, I do not have to say
va
You can use the following:
var value = (short)123;
Of course it doesn't really make sense since the whole point of var is not to write the type.