'Declaration
Public Function Parse( _ ByVal formulaText As String, _ ByRef parsedExpression As Expression, _ Optional ByVal detectFormulaSymbol As Boolean _ ) As Boolean
'Usage
Dim instance As FormulaEngine Dim formulaText As String Dim parsedExpression As Expression Dim detectFormulaSymbol As Boolean Dim value As Boolean value = instance.Parse(formulaText, parsedExpression, detectFormulaSymbol)
public bool Parse( string formulaText, out Expression parsedExpression, bool detectFormulaSymbol )
Parameters
- formulaText
- A string indicates the formula text.
- parsedExpression
- The parsed expression.
- detectFormulaSymbol
Return Value
true
if the formula can be parsed to the instance, false
otherwise.