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
Sodelujte z nami v storitvi GitHub
Vir za to vsebino najdete v storitvi GitHub, kjer lahko tudi ustvarite in pregledate težave in zahtevke za uveljavitev sprememb. Če želite več informacij, glejte naš vodnik za sodelavce.