We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
My goal is to convert a string into a predicate like so:
string = "x => x.Equals(1)"; Predicate<int> predicate = (Predicate<int>)ExpressionEvaluator.Evaluate(string);
Is this possible? If so how can I accomplish this?