Shifts an Int128 value a specified number of bits to the left.

Namespace: SharpAssembler.Core
Assembly: SharpAssembler Core (in SharpAssembler Core.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public static Int128 operator <<(
	Int128 value,
	int shift
)
Visual Basic
Public Shared Operator << ( _
	value As Int128, _
	shift As Integer _
) As Int128
Visual C++
public:
static Int128 operator <<(
	Int128 value, 
	int shift
)

Parameters

value
Type: SharpAssembler.Core..::..Int128
The value whose bits are to be shifted.
shift
Type: System..::..Int32
The number of bits to shift value to the left.

Return Value

A value that has been shifted to the left by the specified number of bits.

See Also