BigInteger.Xor Method

Computes the bitwise exclusive or of two BigInteger values.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static BigInteger Xor(
	BigInteger left,
	BigInteger right
)

Parameters

left  BigInteger
The first number.
right  BigInteger
The second number.

Return Value

BigInteger

Remarks

A BigInteger whose bits are the bits of left XOR-ed with the bits of right.

See Also