MinValue Field
Collapse the table of content
Expand the table of content

Int16.MinValue Field

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Represents the smallest possible value of Int16. This field is constant.

Namespace:  System
Assembly:  mscorlib (in mscorlib.dll)

public const short MinValue

The value of this constant is -32768; that is, hexadecimal 0x8000.

The MinValue property is typically used to prevent an OverflowException when converting from a numeric type with a greater lower range (such as an Int32 or an Int64) to an Int16. The example illustrates this usage.

The following example uses the MinValue property to prevent an OverflowException when converting to an Int16 value.


long[] numbersToConvert = { 162345, 32183, -54000 };
short newNumber;
foreach (long number in numbersToConvert)
{
   if (number >= Int16.MinValue && number <= Int16.MaxValue)
   {
      newNumber = Convert.ToInt16(number);
      outputBlock.Text += String.Format("Successfully converted {0} to an Int16.",
                        newNumber) + "\n";
   }
   else
   {
      outputBlock.Text += String.Format("Unable to convert {0} to an Int16.", number) + "\n";
   }
}
// The example displays the following output:
//       Unable to convert 162345 to an Int16.
//       Successfully converted 32183 to an Int16.
//       Unable to convert -54000 to an Int16.   


Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Windows Phone

Show:
© 2017 Microsoft