Gets or sets the expression evaluated to result in the symbol's value.
            
Namespace: SharpAssembler.Core.InstructionsAssembly: SharpAssembler Core (in SharpAssembler Core.dll) Version: 1.0.0.0 (1.0.0.0)
 Syntax
Syntax
| C# | 
|---|
| public Func Expression { get; } | 
| Visual Basic | 
|---|
| Public ReadOnly Property Expression As Func
	Get | 
| Visual C++ | 
|---|
| public:
property Func^ Expression {
	Func^ get ();
} | 
Field Value
A function accepting a 
Context and returning a 
SimpleExpression.
 Contracts
Contracts
Get
| Ensures | 
|---|
| Contract.Result<Func<Context, SimpleExpression>>() != null | 
 See Also
See Also