We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to create variable with nested variable like an object
VariableCollection variables = context.Variables; variables.Add("a.f", 100); variables.Add("b", 1); variables.Add("c", 24);
IGenericExpression<bool> e = context.CompileGeneric<bool>("(a.f == 100"); //a.f not working
Even tried nested varaible ExpressionContext context = new ExpressionContext(); VariableCollection variables = context.Variables;
//variables.Add("a", 100); variables.Add("b", 1); variables.Add("c", 24); ExpressionContext context1 = new ExpressionContext(); VariableCollection variables1 = context1.Variables; variables1.Add("f", 100); variables.Add("a", variables1);
Any help or direction?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
How to create variable with nested variable like an object
VariableCollection variables = context.Variables;
variables.Add("a.f", 100);
variables.Add("b", 1);
variables.Add("c", 24);
Even tried nested varaible
ExpressionContext context = new ExpressionContext();
VariableCollection variables = context.Variables;
Any help or direction?
The text was updated successfully, but these errors were encountered: