Class for evaluating an already parsed expression or executing parsed code
 
    
    
       | Class member | Description | 
       | Evaluate | Rapidly evaluates a floating point expression that was parsed with Parse or passed By Expression | 
 | EvaluateInt32 | Rapidly evaluates expression that was parsed as integer with Parse or passed By Expression | 
 | EvaluateNTE | Same as Evaluate, but with no testing or handling for floating point exceptions | 
 | EvaluateStr | Rapidly evaluates an expression of any data type that was parsed with Parse or passed By Expression returning a string | 
 | EvaluateVoid | Rapidly evaluates an expression that was parsed with Parse or passed By Expression and returns a Pointer  to the result | 
 | Execute | Rapidly executes code that was parsed with Parse or passed By Expression for which a result is not required | 
 | Handle | Returns the handle of the parsed expression | 
 | Release | Releases an expression that was parsed with Parse | 
 | ReleaseExpr | (Use Release instead) |