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