C # dll to solve a simple equation

I am looking for C # dll to solve a simple equation. Example..

10 = 2 + 3 + x

The result should be x = 5;

Is there a free dll?

+5
source share
3 answers

I used this partisan mathematical formula with positive results. The documentation he provided is very useful for download.

http://www.codeproject.com/KB/recipes/MathieuMathParser.aspx?display=Print

Then your application can place special equations that the library will analyze into its component parts. Then you can specify the values ​​for the required variables and evaluate the result.

(, , , , ..) .

+8

Use System.Math if you need to do something more complex than an add-on. Otherwise .. do it yourself for FREE!

-1
source

All Articles