The following code was evaluating well till version 2.11.0
interpreter.Eval<bool>("((int?)5)>((double?)4)");
later versions (including current version 2.13.0), throws the following exception:
System.InvalidOperationException : The binary operator GreaterThan is not defined for the types 'System.Nullable`1[System.Int32]' and 'System.Nullable`1[System.Double]'
tested in .NET6
The following code was evaluating well till version 2.11.0
later versions (including current version 2.13.0), throws the following exception:
tested in .NET6