Gets or sets the value of the INDEX part of the SIB byte.
            
Namespace: SharpAssembler.x86Assembly: SharpAssembler x86-64 (in SharpAssembler x86-64.dll) Version: 1.0.0.0 (1.0.0.0)
 Syntax
Syntax
| C# | 
|---|
| public byte Index { get; set; } | 
| Visual Basic | 
|---|
| Public Property Index As Byte Get Set | 
| Visual C++ | 
|---|
| public: property unsigned char Index { unsigned char get (); void set (unsigned char value); } | 
Field Value
The 4-bit INDEX value. Remarks
Remarks
            The least significant three bits are encoded in the SIB byte, while the fourth bit is encoded in the
            REX.X bit.
            
 Exceptions
Exceptions
| Exception | Condition | 
|---|---|
| System..::..ArgumentOutOfRangeException | value > 0x0F | 
 Contracts
Contracts
Get
| Ensures | ||
|---|---|---|
| Contract.Result<byte>() <= 0x0F 
 | 
Set
| Requires | ||||
|---|---|---|---|---|
| value <= 0x0F 
 | 





