ShiftLeft Method (Int64, Int32) |
Implements a .NET '<<' operator for Int64.
Namespace:
PKI.Utils
Assembly:
SysadminsLV.PKI (in SysadminsLV.PKI.dll) Version: 3.7.0.0 (3.7.0.0)
Syntax public static long Left(
long x,
int count
)
Public Shared Function Left (
x As Long,
count As Integer
) As Long
public:
static long long Left(
long long x,
int count
)
static member Left :
x : int64 *
count : int -> int64
Parameters
- x
- Type: SystemInt64
A value to shift. - count
- Type: SystemInt32
A number that represents additive-expression.
Return Value
Type:
Int64The result of Shift operation.
See Also