Returns the value of the variable name. If the variable has not been added, or if it's value is null, null is returned.

Namespace:  SingularSys.Jep
Assembly:  Jep (in Jep.dll) Version: 1.1.0.0 (1.0.0)

Syntax

C#
public Object GetVariableValue(
	string name
)
Visual Basic (Declaration)
Public Function GetVariableValue ( _
	name As String _
) As Object
Visual C++
public:
Object^ GetVariableValue(
	String^ name
)

Parameters

name
Type: System..::.String
the name of the variable

Return Value

the value of the variable, or null if the variable has not been added or has the value null.

See Also