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

  • 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

See Also

Reference

BigInteger Structure

Microsoft.SolverFoundation.Common Namespace