Click or drag to resize
MathAbs Method (Int64)
Returns the absolute value of a 64-bit signed integer.

Namespace: System
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
public static long Abs(
	long value
)

Parameters

value
Type: SystemInt64
A number that is greater than MinValue, but less than or equal to MaxValue.

Return Value

Type: Int64
A 64-bit signed integer, x, such that 0 ≤ x ≤MaxValue.
Exceptions
ExceptionCondition
OverflowExceptionvalue equals MinValue.
See Also