Gets or sets the expression evaluating to the jump target.
Namespace: SharpAssembler.x86.OperandsAssembly: 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
Contracts
Get
| Ensures |
|---|
Contract.Result<Func<Context, SimpleExpression>>() != null |
Set
See Also