BigInteger::BitwiseOr Operator (BigInteger, BigInteger)
.NET Framework (current version)
Performs a bitwise Or 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 BitwiseOr method defines the bitwise Or operation for BigInteger values. The bitwise Or operation sets a result bit only if either or both of the corresponding bits in left and right are set, as shown in the following table.
Bit in left | Bit in right | Bit in result |
|---|---|---|
0 | 0 | 0 |
1 | 0 | 1 |
1 | 1 | 1 |
0 | 1 | 1 |
The BitwiseOr method enables code such as the following:
The BitwiseOr method performs the bitwise Or operation on two BigInteger values as if they were both in two's complement representation with virtual sign extension.
Universal Windows Platform
Available since 8
.NET Framework
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 4.0
Windows Phone
Available since 8.1
Available since 8
.NET Framework
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 4.0
Windows Phone
Available since 8.1
Show: