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