Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Abs()

static BigInteger System.Numerics.BigInteger.Abs ( BigInteger value)
inlinestatic

Definition at line 631 of file BigInteger.cs.

632 {
633 if (!(value >= Zero))
634 {
635 return -value;
636 }
637 return value;
638 }
static BigInteger Zero
Definition BigInteger.cs:32

References System.value, and System.Numerics.BigInteger.Zero.