ComponentOne Binding Expressions for WPF and Silverlight
C1.WPF.Binding Namespace / C1CalcEngine Class / Evaluate Method
Expression to evaluate.

In This Topic
    Evaluate Method (C1CalcEngine)
    In This Topic
    Evaluates a string.
    Syntax
    'Declaration
     
    
    Public Function Evaluate( _
       ByVal expression As System.String _
    ) As System.Object
    public System.object Evaluate( 
       System.string expression
    )

    Parameters

    expression
    Expression to evaluate.

    Return Value

    The value of the expression.
    Remarks
    If you are going to evaluate the same expression several times, it is more efficient to parse it only once using the Parse method and then using the Expression.Evaluate method to evaluate the parsed expression.
    See Also