Resolves any unresolved symbol references and returns the actual value of the expression.

Namespace: SharpAssembler.Core
Assembly: 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

ExceptionCondition
System..::..InvalidOperationException The symbol referenced could not be resolved.
System..::..ArgumentNullExceptioncontext == null

Contracts

See Also