public static decimal EvaluateExpression(
string expr
)
Public Shared Function EvaluateExpression (
expr As String
) As Decimal
Dim expr As String
Dim returnValue As Decimal
returnValue = UtilNCalc.EvaluateExpression(expr)
public:
static Decimal EvaluateExpression(
String^ expr
)
static member EvaluateExpression :
expr : string -> decimal
No code example is currently available or this language may not be supported.
[Missing <param name="expr"/> documentation for "M:DevCase.ThirdParty.NCalc.UtilNCalc.EvaluateExpression(System.String)"]
No code example is currently available or this language may not be supported.
Dim expr As String = "(1 + (2 - 2)) * (100 / 2.5)" ' = 40
Dim result As Decimal = EvaluateExpression(expr)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
EvaluationException |