Resolves any unresolved symbol references and returns the actual value of the expression.
Namespace: SharpAssembler.CoreAssembly: SharpAssembler Core (in SharpAssembler Core.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
| C# |
|---|
public Int128 Evaluate( Context context ) |
| Visual Basic |
|---|
Public Function Evaluate ( _ context As Context _ ) As Int128 |
| Visual C++ |
|---|
public: Int128 Evaluate( Context^ context ) |
Parameters
- context
- Type: SharpAssembler.Core..::..Context
The Context in which the unresolved symbol references are resolved.
Return Value
The result of the expression.
Exceptions
| Exception | Condition |
|---|---|
| System..::..InvalidOperationException | The symbol referenced could not be resolved. |
| System..::..ArgumentNullException | context == null |
Contracts
| Requires | ||
|---|---|---|
context != null
|