Initializes a new instance of the Bound 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 Bound(
	RegisterOperand index,
	EffectiveAddress bounds
)
Visual Basic
Public Sub New ( _
	index As RegisterOperand, _
	bounds As EffectiveAddress _
)
Visual C++
public:
Bound(
	RegisterOperand^ index, 
	EffectiveAddress^ bounds
)

Parameters

index
Type: SharpAssembler.x86.Operands..::..RegisterOperand
The array index to check.
bounds
Type: SharpAssembler.x86.Operands..::..EffectiveAddress
Memory address of two (double)words specifying the lower and upper limits of the array.

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptionindex == null
System..::..ArgumentNullExceptionbounds == null

Contracts

See Also