BigInteger.Negate Method
Negates a specified BigInteger value.
Namespace: System.Numerics
Assembly: System.Numerics (in System.Numerics.dll)
Parameters
- value
- Type: System.Numerics.BigInteger
The value to negate.
Return Value
Type: System.Numerics.BigIntegerThe result of the value parameter multiplied by negative one (-1).
Negation obtains the additive inverse of a number. The additive inverse of a number is a number that produces a value of zero when it is added to the original number.
The Negate method is implemented for languages that do not support custom operators. Its behavior is identical to negation using the unary negation operator. In addition, the Negate method is a useful substitute for the negation operator when instantiating a BigInteger variable, as shown in the following example.
The following example illustrates three ways to negate the value of a BigInteger object.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.