i am new to wp7 programming and c# and i want to use a mathematical parser for my app. I found ncalc that everyone says it works great for windows phone, but i don't know how to use it inside my app.I have downloaded the binaries and i added them in my app but when i use a simple expression like this: Expression e = new Expression("2 + 3 * 5"); Debug.Assert(17 == e.Evaluate()); it gives me a bunch of errors.Someone who have used ncalc could tell me how he made it work?
I searched the internet but i couldn't find something.Please help me...