BigInteger.ExclusiveOr Operator
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Computes the bitwise exclusive OR on two big integers.
Namespace: Microsoft.SolverFoundation.Common
Assembly: Microsoft.Solver.Foundation (in Microsoft.Solver.Foundation.dll)
Syntax
'Declaration
Public Shared Operator Xor ( _
left As BigInteger, _
right As BigInteger _
) As BigInteger
public static BigInteger operator ^(
BigInteger left,
BigInteger right
)
public:
static BigInteger operator ^(
BigInteger left,
BigInteger right
)
static let inline (^^^)
left:BigInteger *
right:BigInteger : BigInteger
JScript does not support overloaded operators.
Parameters
- left
Type: Microsoft.SolverFoundation.Common.BigInteger
A BigInteger value.
- right
Type: Microsoft.SolverFoundation.Common.BigInteger
A BigInteger value.
Return Value
Type: Microsoft.SolverFoundation.Common.BigInteger
The result of the bitwise Or operation on the left and right parameters.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.