Math.Abs Method (Int16)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Returns the absolute value of a 16-bit signed integer.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- value
- Type: System.Int16
A number that is greater than Int16.MinValue, but less than or equal to Int16.MaxValue.
| Exception | Condition |
|---|---|
| OverflowException | value equals Int16.MinValue. |
The absolute value of an Int16 is its numeric value without its sign. For example, the absolute value of both 123 and -123 is 123.
The following example uses the Math.Abs(Int16) method to get the absolute value of several Int16 values.
short[] values = { Int16.MaxValue, 10328, 0, -1476, Int16.MinValue }; foreach (short value in values) { try { outputBlock.Text += String.Format("Abs({0}) = {1}", value, Math.Abs(value)) + "\n"; } catch (OverflowException) { outputBlock.Text += String.Format("Unable to calculate the absolute value of {0}.", value) + "\n"; } } // The example displays the following output: // Abs(32767) = 32767 // Abs(10328) = 10328 // Abs(0) = 0 // Abs(-1476) = 1476 // Unable to calculate the absolute value of -32768.
Show: