Math.Abs Method (SByte)
.NET Framework 4
Updated: July 2010
Returns the absolute value of an 8-bit signed integer.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- value
- Type: System.SByte
A number that is greater than SByte.MinValue, but less than or equal to SByte.MaxValue.
| Exception | Condition |
|---|---|
| OverflowException |
value equals SByte.MinValue. |
The following example uses the Abs(SByte) method to get the absolute value of a number of SByte values.
sbyte[] values = { SByte.MaxValue, 98, 0, -32, SByte.MinValue }; foreach (sbyte 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(127) = 127 // Abs(98) = 98 // Abs(0) = 0 // Abs(-32) = 32 // Unable to calculate the absolute value of -128.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.