Gets the register.

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

Syntax

C#
public Register Register { get; set; }
Visual Basic
Public Property Register As Register
	Get
	Set
Visual C++
public:
property Register Register {
	Register get ();
	void set (Register value);
}

Field Value

A Register.

Exceptions

ExceptionCondition
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)

See Also