Represents the smallest possible value of short. This field is constant.
Value: -32768
The value of this constant is -32768; that is, hexadecimal 0x8000.
The short.MinValue property is typically used to prevent an OverflowException when converting from a numeric type with a greater lower range (such as an int or an long) to an short. The example illustrates this usage.