我要实施
Expression<Func<int, int, int>> Max = (p1,p2) => p1 > p2 ? p1:p2;
作为表达式树并尝试过
ParameterExpression LeftEx = Expression.Parameter(typeof(int), "p1");
ParameterExpression RightEx = Expression.Parameter(typeof(int), "p2");
BinaryExpression GroesserAls = Expression.GreaterThan(LeftEx, RightEx);
ConditionalExpression Cond = BinaryExpression.Condition(GroesserAls, LeftEx, RightEx);
Expression main = Cond.Test;
Expression<Func<int, int, bool>> Lam = Expression.Lambda<Func<int, int, bool>>(main,
new ParameterExpression[] { LeftEx, RightEx });
Console.WriteLine(Lam.Compile().Invoke(333, 1200));
使用 Cond 我要么得到真/假,但不能得到 Condition 应该返回的 LeftEx 或 RightEx。
我在文档中找不到任何内容。
彼得