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