I have an expression like "(((2+5)*1000)/((30-20)*7))"
How can I evaluate the expression using IronJS from C#.
The expected result is 100.
I tried the top two rated answers described in How can I evaluate a C# expression dynamically? and it worked in those ways.Fine.
I have also looked into the solution proposed by @Rudolf_Abel and @Jeno Laszlo mentioned in the comment that IronJS is a better choice.
Now I am trying the same with IronJS. Is it possible.How ? I have read some article on IronJs (e.g. here is one) but just could not fit that into the requirement.
N.B.~ This is for my own sake of interest I am performing this experiment.