BigInteger.Abs(BigInteger) Method

Definition

Gets the absolute value of a BigInteger object.

public:
 static System::Numerics::BigInteger Abs(System::Numerics::BigInteger value);
public:
 static System::Numerics::BigInteger Abs(System::Numerics::BigInteger value) = System::Numerics::INumberBase<System::Numerics::BigInteger>::Abs;
public static System.Numerics.BigInteger Abs (System.Numerics.BigInteger value);
static member Abs : System.Numerics.BigInteger -> System.Numerics.BigInteger
Public Shared Function Abs (value As BigInteger) As BigInteger

Parameters

value
BigInteger

A number.

Returns

The absolute value of value.

Implements

Remarks

The absolute value of a number is that number without its sign, as shown in the following table.

value parameter Return value
value >= 0 value
value < 0 value * -1

The Abs method is equivalent to the Math.Abs method for the primitive numeric types.

Applies to

See also