BigInteger.Abs(BigInteger) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.