Steve Hebert’s .Math Library
Steve Hebert’s .Math Library
"Welcome to .Math, the OpenSource expression compiler for the .NET platform written entirely in C#. Offering speed through compilation of expressions, the library allows for variable handling, an entire function library and the ability to add your own functions."
Here's an example of what you can do with this...
"sExpression = “4+3”;
EqCompiler oCompiler = new EqCompiler( sExpression, true);
oCompiler.Compile();
double dValue = oCompiler.Calculate();"
Pretty cool...
No comments:
Post a Comment