Gets or sets the expression evaluating to the offset.

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 Func Offset { get; set; }
Visual Basic
Public Property Offset As Func
	Get
	Set
Visual C++
public:
property Func^ Offset {
	Func^ get ();
	void set (Func^ value);
}

Field Value

A function taking a Context and returning a SimpleExpression.

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptionvalue == null

Contracts

Get

Ensures
Contract.Result<Func<Context, SimpleExpression>>() != null

Set

Requires
value != null

See Also