Initializes a new instance of the Lgs 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 Lgs( EffectiveAddress source, RegisterOperand destination ) |
| Visual Basic |
|---|
Public Sub New ( _ source As EffectiveAddress, _ destination As RegisterOperand _ ) |
| Visual C++ |
|---|
public: Lgs( EffectiveAddress^ source, RegisterOperand^ destination ) |
Parameters
- source
- Type: SharpAssembler.x86.Operands..::..EffectiveAddress
The source operand.
- destination
- Type: SharpAssembler.x86.Operands..::..RegisterOperand
The destination operand.
Exceptions
| Exception | Condition |
|---|---|
| System..::..ArgumentNullException | destination == null |
| System..::..ArgumentNullException | source == null |
Contracts
| Requires | ||
|---|---|---|
destination != null
| ||
source != null
|