BigInteger.ExclusiveOr Operator

Computes the bitwise exclusive or of two BigInteger values.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public static BigInteger operator ^(
	BigInteger left,
	BigInteger right
)

Parameters

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

Return Value

BigInteger

Implements

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

Remarks

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

See Also