Initializes a new instance of the Shl class.
Namespace: SharpAssembler.x86.InstructionsAssembly: SharpAssembler x86-64 (in SharpAssembler x86-64.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
| C# |
|---|
public Shl( EffectiveAddress value, RegisterOperand positions ) |
| Visual Basic |
|---|
Public Sub New ( _ value As EffectiveAddress, _ positions As RegisterOperand _ ) |
| Visual C++ |
|---|
public: Shl( EffectiveAddress^ value, RegisterOperand^ positions ) |
Parameters
- value
- Type: SharpAssembler.x86.Operands..::..EffectiveAddress
The value to change.
- positions
- Type: SharpAssembler.x86.Operands..::..RegisterOperand
The register containing the number of positions to adjust.
Exceptions
| Exception | Condition |
|---|---|
| System..::..ArgumentNullException | value == null |
| System..::..ArgumentNullException | positions == null |
Contracts
| Requires | ||
|---|---|---|
value != null
| ||
positions != null
|