Initializes a new instance of the Sub class.
            
Namespace: SharpAssembler.x86.InstructionsAssembly: SharpAssembler x86-64 (in SharpAssembler x86-64.dll) Version: 1.0.0.0 (1.0.0.0)
 Syntax
Syntax
| C# | 
|---|
| public Sub( EffectiveAddress destination, Immediate source ) | 
| Visual Basic | 
|---|
| Public Sub New ( _ destination As EffectiveAddress, _ source As Immediate _ ) | 
| Visual C++ | 
|---|
| public: Sub( EffectiveAddress^ destination, Immediate^ source ) | 
Parameters
- destination
- Type: SharpAssembler.x86.Operands..::..EffectiveAddress
 The destination memory operand.
- source
- Type: SharpAssembler.x86.Operands..::..Immediate
 The source immediate value.
 Exceptions
Exceptions
| Exception | Condition | 
|---|---|
| System..::..ArgumentNullException | destination == null | 
| System..::..ArgumentNullException | source == null | 
 Contracts
Contracts
| Requires | ||
|---|---|---|
| destination != null 
 | ||
| source != null 
 | 





