ExpressionEvaluator
ExpressionEvaluator copied to clipboard
A Simple Math and Pseudo C# Expression Evaluator in One C# File. Can also execute small C# like scripts
Slow EvaluateCast
After upgrading to the last version from 1.4.16.0 we are encountering performance issues on the EvaluateCast function.  The slowdown is caused by the use of the EvaluateType method instead...
Hello, We have integrated the library in our application which uses big decimal numbers and we encountered issues regarding math operations such as Abs and Max but I believe all...
Maybe You will be interested in hosting API Explorer online: [](https://www.robiniadocs.com/d/codingseb-expressionevaluator/api/CodingSeb.ExpressionEvaluator.html) https://www.robiniadocs.com/d/codingseb-expressionevaluator/api/CodingSeb.ExpressionEvaluator.html
If trying to evaluate `foo.a`, I have the `_evaluatevariable` call bask as follows: ``` c# private void _evaluator_EvaluateVariable(object? sender, VariableEvaluationEventArg e) { if (e.Name == "foo") { e.Value = new...
[CASE] 0. Declare Variable First uint value = 1; 1. The variable type is unit at this point. 2. Assign a value to it value = 10; 3. Now the...
Fatal error in Unity CIL Linker Mono.Linker.LinkerFatalErrorException: ILLink: error IL1005: CodingSeb.ExpressionEvaluator.ExpressionEvaluator.GetTypeByFriendlyName(String,String,Boolean): Error processing method 'CodingSeb.ExpressionEvaluator.ExpressionEvaluator.GetTypeByFriendlyName(String,String,Boolean)' in assembly 'CodingSeb.ExpressionEvaluator.dll' ---> System.NullReferenceException: Object reference not set to an instance of an object....
The expression evaluator fails to identify and call the correct instance of an overloaded method in a context object when a ```Func```-parameter is included. Instead, the top implemented instance of...
Fix for #167: Handle nested ternary expressions without requiring parentheses
The formula `1 == 2 ? 3 == 4 ? 1 : 0 : 0` throws exception > System.NotSupportedException : Failed to evaluate expression for '1 == 2 ? 3...
Hi, Recently came across `numexpr` https://github.com/pydata/numexpr that can do expressions on arrays eg. `3*a+4*b` where `a` and `b` are arrays. Is this kind of expression possible in `ExpressionEvaluator`. if not...