Math::Abs Method (Int64)

 

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

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

public:
static long long Abs(
	long long value
)

Parameters

value
Type: System::Int64

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

Return Value

Type: System::Int64

A 64-bit signed integer, x, such that 0 x Int64::MaxValue.

Exception Condition
OverflowException

value equals Int64::MinValue.

The absolute value of an Int64 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(Int64) method to get the absolute value of a number of Int64 values.

No code example is currently available or this language may not be supported.

Universal Windows Platform
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Return to top
Show: