I'm trying to use following expression:
string.IsNullOrEmpty(variable as string)
but it results with exception: DynamicExpresso.Exceptions.ParseException: ')' or ',' expected (at index 40).
Adding extra parenthesis as message suggests solves the issue, but the expression is obviously wrong then
string.IsNullOrEmpty(variable as string))
Seems there is something wrong with parser.
I'm trying to use following expression:
string.IsNullOrEmpty(variable as string)but it results with exception: DynamicExpresso.Exceptions.ParseException: ')' or ',' expected (at index 40).
Adding extra parenthesis as message suggests solves the issue, but the expression is obviously wrong then
string.IsNullOrEmpty(variable as string))Seems there is something wrong with parser.