BinarySizeRightShift Operator

Shifts the bits of a BinarySize to the right.

Definition

Namespace: Ookii
Assembly: Ookii.BinarySize (in Ookii.BinarySize.dll) Version: 1.1.0+e86ae44c345422a1011f7fa7b6b715bf3d1a34ce
C#
public static BinarySize operator >>(
	BinarySize value,
	int shift
)

Parameters

value  BinarySize
The value to shift.
shift  Int32
The number of bits to shift by.

Return Value

BinarySize
The result of shifting value right by shift bits.

See Also