BigInteger::BitwiseAnd Operator
Performs a bitwise And 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 BitwiseAnd method defines the bitwise And operation for BigInteger values. The bitwise And operation sets a result bit only if the corresponding bits in left and right are also set, as shown in the following table.
Bit in left | Bit in right | Bit in result |
|---|---|---|
0 | 0 | 0 |
1 | 0 | 0 |
1 | 1 | 1 |
0 | 1 | 0 |
The BitwiseAnd method enables code such as the following:
The BitwiseAnd method performs the bitwise And 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.