EvaluateExpression Method
- Last UpdatedNov 06, 2025
- 1 minute read
The function will evaulate the expression passed in and will use the parameter parameterValues to replace referenced parameters in the expression.
'Declaration
Public Shared Function EvaluateExpression( _
ByVal expression As String, _
ByVal parameterValues As Hashtable _
) As Boolean
'Usage
Dim expression As String
Dim parameterValues As Hashtable
Dim value As Boolean
value = ExpressionEvaluator.EvaluateExpression(expression, parameterValues)
public static bool EvaluateExpression(
string expression,
Hashtable parameterValues
)
Parameters
- expression
- The expression to be evaluated
- parameterValues
- Should contain any referenced parameters that may appear in the expression. As of now the function is expected the following format for the hashtable(string, string).