BigInteger.OnesComplement Operator

Returns the one's complement of a BigInteger.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public static BigInteger operator ~(
	BigInteger value
)

Parameters

value  BigInteger
A BigInteger.

Return Value

BigInteger
The BigInteger that is the one's complement of value.

Implements

IBitwiseOperators<TSelf, TOther, TResult>.OnesComplement(TSelf)

See Also