Initializes a new instance of the Xchg class.

Namespace: SharpAssembler.x86.Instructions
Assembly: SharpAssembler x86-64 (in SharpAssembler x86-64.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public Xchg(
	RegisterOperand first,
	RegisterOperand second
)
Visual Basic
Public Sub New ( _
	first As RegisterOperand, _
	second As RegisterOperand _
)
Visual C++
public:
Xchg(
	RegisterOperand^ first, 
	RegisterOperand^ second
)

Parameters

first
Type: SharpAssembler.x86.Operands..::..RegisterOperand
The first operand.
second
Type: SharpAssembler.x86.Operands..::..RegisterOperand
The second operand.

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptionfirst == null
System..::..ArgumentNullExceptionsecond == null

Contracts

See Also