I have a string that contains condition expressions:
"weight=65,age>18"
I want to check if the condition is true.
For example:
int weight = 70;
int age= 19;
string conditions = "weight=65,age>18";
In the above example weight condition is false and age condition is true. Hence the result should be false.
I want to check the condition and return if the condition is satisfied.