BigInteger::ExclusiveOr Operator
Performs a bitwise exclusive Or (XOr) operation on two BigInteger values.
Assembly: System.Numerics (in System.Numerics.dll)
Parameters
- left
- Type: System.Numerics::BigInteger
The first value.
- right
- Type: System.Numerics::BigInteger
The second value.
The result of a bitwise exclusive Or operation is true if the values of the two bits are different; otherwise, it is false. The following table illustrates the exclusive Or operation.
Bit x in left | Bit x in right | Return value |
|---|---|---|
0 | 0 | 0 |
0 | 1 | 1 |
1 | 0 | 1 |
1 | 1 | 0 |
The ExclusiveOr method enables code such as the following:
The ExclusiveOr method performs the bitwise exclusive Or operation on two BigInteger values as if they were both in two's complement representation with virtual sign extension.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.