Initializes a new instance of the Set 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 Set( EffectiveAddress destination, InstructionCondition condition ) |
Visual Basic |
---|
Public Sub New ( _ destination As EffectiveAddress, _ condition As InstructionCondition _ ) |
Visual C++ |
---|
public: Set( EffectiveAddress^ destination, InstructionCondition condition ) |
Parameters
- destination
- Type: SharpAssembler.x86.Operands..::..EffectiveAddress
The destination memory operand.
- condition
- Type: SharpAssembler.x86..::..InstructionCondition
The condition on which this instruction executes.
Exceptions
Exception | Condition |
---|---|
System..::..ArgumentNullException | destination == null |
System.ComponentModel..::..InvalidEnumArgumentException | !(Enum.IsDefined(typeof(InstructionCondition), condition)) |
System..::..ArgumentException | condition == InstructionCondition.None |
Contracts
Requires | ||
---|---|---|
destination != null
| ||
Enum.IsDefined(typeof(InstructionCondition), condition) | ||
condition != InstructionCondition.None
|