Gets or sets the expression evaluating to the immediate value.

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