You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CalculationEngine engine = new CalculationEngine();
ExpressionContext context = new ExpressionContext();
int interest = 2;
context.Variables.Add("interest", interest);
BatchLoader loader = engine.CreateBatchLoader();
Write a small program with those lines and enable "Common Language Runtime Exceptions" in Visual Studio Exceptions Settings and it throws an exception.
Why does this happen?
In our production tool, we get 100 messages per second and we need to validate them with flee expressions. For each expression, we create a new ExpressionContext for the validation.
How can i prevent this error exception?
The text was updated successfully, but these errors were encountered:
Write a small program with those lines and enable "Common Language Runtime Exceptions" in Visual Studio Exceptions Settings and it throws an exception.
Why does this happen?
In our production tool, we get 100 messages per second and we need to validate them with flee expressions. For each expression, we create a new ExpressionContext for the validation.
How can i prevent this error exception?
The text was updated successfully, but these errors were encountered: