Represents the largest possible value of an short. This field is constant.
Value: 32767
The value of this constant is 32767; that is, hexadecimal 0x7FFF.
The short.MaxValue property is typically used to prevent an OverflowException when converting from a numeric type with a greater upper range (such as a ushort or a int) to an short. The example illustrates this usage.