Stuck with BinaryExpression in C #

I want to implement

Expression<Func<int, int, int>> Max = (p1,p2) => p1 > p2 ? p1:p2;

as an expression tree and tried

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));

With Cond, I either get true / false, but not LeftEx or RightEx, that the condition should return.

I did not find anything in the documentation.

Peter

+3
source share
1 answer

I think you just need to:

Expression<Func<int, int, int>> Lam =
    Expression.Lambda<Func<int, int, int>>(Cond, // <=== HERE
        new ParameterExpression[] { LeftEx, RightEx });

edit - btw - varis your friend here:

    var p1 = Expression.Parameter(typeof(int), "p1");
    var p2 = Expression.Parameter(typeof(int), "p2");
    var body = Expression.Condition(Expression.GreaterThan(p1, p2), p1, p2);
    var lambda = Expression.Lambda<Func<int, int, int>>(body, p1, p2);
    var func = lambda.Compile();
    Console.WriteLine(func(333,1200));
    Console.WriteLine(func(1200,333));
+8
source

Source: https://habr.com/ru/post/1710554/


All Articles