ExpressionEvaluator
                                
                                 ExpressionEvaluator copied to clipboard
                                
                                    ExpressionEvaluator copied to clipboard
                            
                            
                            
                        Nested ternary throws exception
The formula
1 == 2 ? 3 == 4 ? 1 : 0 : 0
throws exception
System.NotSupportedException : Failed to evaluate expression for '1 == 2 ? 3 == 4 ? 1 : 0 : 0' ----> CodingSeb.ExpressionEvaluator.ExpressionEvaluatorSyntaxErrorException : Invalid character [58::]
This works with paranthesis 1 == 2 ? (3 == 4 ? 1 : 0) : 0.