Math.Abs Method (Int32)
Returns the absolute value of a 32-bit signed integer.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Parameters
- value
- Type: System.Int32
A number that is greater than Int32.MinValue, but less than or equal to Int32.MaxValue.
| Exception | Condition |
|---|---|
| OverflowException | value equals Int32.MinValue. |
The absolute value of an Int32 is its numeric value without its sign. For example, the absolute value of both 123 and -123 is 123.
The following example uses the Abs(Int32) method to get the absolute value of a number of Int32 values.
int[] values = { Int32.MaxValue, 16921, 0, -804128, Int32.MinValue }; foreach (int value in values) { try { Console.WriteLine("Abs({0}) = {1}", value, Math.Abs(value)); } catch (OverflowException) { Console.WriteLine("Unable to calculate the absolute value of {0}.", value); } } // The example displays the following output: // Abs(2147483647) = 2147483647 // Abs(16921) = 16921 // Abs(0) = 0 // Abs(-804128) = 804128 // Unable to calculate the absolute value of -2147483648.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.