Share via


Abs Method (Int32)

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Returns the absolute value of a 32-bit signed integer.

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

Syntax

'Declaration
Public Shared Function Abs ( _
    val As Integer _
) As Integer
public static int Abs(
    int val
)
public:
static int Abs(
    int val
)
static member Abs : 
        val:int -> int 
public static function Abs(
    val : int
) : int

Parameters

Return Value

Type: System. . :: . .Int32
A 32-bit signed integer, x, such that 0 ≤ x ≤Int32..::..MaxValue.

Exceptions

Exception Condition
OverflowException

val equals Int32..::..MinValue.

Remarks

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.

.NET Framework Security

See Also

Reference

Math Class

Abs Overload

System Namespace