Gets the base register.
Namespace: SharpAssembler.x86.OperandsAssembly: SharpAssembler x86-64 (in SharpAssembler x86-64.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
| C# |
|---|
public Register BaseRegister { get; set; } |
| Visual Basic |
|---|
Public Property BaseRegister As Register Get Set |
| Visual C++ |
|---|
public: property Register BaseRegister { Register get (); void set (Register value); } |
Field Value
A Register.
Exceptions
| Exception | Condition |
|---|---|
| System.ComponentModel..::..InvalidEnumArgumentException | !(Enum.IsDefined(typeof(Register), value)) |
Contracts
Get
| Ensures |
|---|
Enum.IsDefined(typeof(Register), Contract.Result<Register>()) |
Set
| Requires |
|---|
Enum.IsDefined(typeof(Register), value) |