Completed
Last Updated: 15 May 2019 14:27 by ADMIN
ClausDC
Created on: 30 Apr 2019 12:44
Type: Bug Report
1
Cannot use .ToString() for an expression enclosed in parentheses

The expression parser throws an exception when parsing an expression that calls .ToString() method after closing parenthesis like the one below:

=(Fields.Value1+Fields.Value2).ToString()

If the two operands in parentheses are converted to double, the expression is parsed and evaluated correctly:

=CDbl(Fields.Value1+Fields.Value2).ToString()

 
0 comments