Gets or sets the expression result to emit.
Namespace: SharpAssembler.Core.InstructionsAssembly: SharpAssembler Core (in SharpAssembler Core.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C# |
---|
public SimpleExpression Expression { get; set; } |
Visual Basic |
---|
Public Property Expression As SimpleExpression Get Set |
Visual C++ |
---|
public: property SimpleExpression^ Expression { SimpleExpression^ get (); void set (SimpleExpression^ value); } |
Field Value
A SimpleExpression.
Exceptions
Exception | Condition |
---|---|
System..::..ArgumentNullException | value == null |
Contracts
Get
Ensures |
---|
Contract.Result<SimpleExpression>() != null |
Set
Requires | ||
---|---|---|
value != null
|