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