BigInteger.LeftShift Operator
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Shifts a big integer a specified number of bits to the left.
Namespace: Microsoft.SolverFoundation.Common
Assembly: Microsoft.Solver.Foundation (in Microsoft.Solver.Foundation.dll)
Syntax
'Declaration
Public Shared Operator << ( _
value As BigInteger, _
shift As Integer _
) As BigInteger
public static BigInteger operator <<(
BigInteger value,
int shift
)
public:
static BigInteger operator <<(
BigInteger value,
int shift
)
static let inline (<<<)
value:BigInteger *
shift:int : BigInteger
JScript does not support overloaded operators.
Parameters
- value
Type: Microsoft.SolverFoundation.Common.BigInteger
The value whose bits are to be shifted.
- shift
Type: System.Int32
The number of bits to shift value to the left.
Return Value
Type: Microsoft.SolverFoundation.Common.BigInteger
A value that has been shifted to the left by the specified number of bits.
.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.