Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I saw an article that shows how I can Concatenate two Expression<Func<T, bool>> variables.

But is here some ways to do this also with Expression<Action<T>> ?

Here is what I have tried:

public static Expression<Action<T>> Add<T>(this Expression<Action<T>> left, Expression<Action<T>> right)
{
    //var param = Expression.Parameter(typeof(T), "x");
    var body = Expression.AndAssign(
            Expression.Invoke(left),
            Expression.Invoke(right)
        );
    var lambda = Expression.Lambda<Action<T>>(body);
    return lambda;
}
share|improve this question
I'd guess that this is .NET and C#, but I shouldn't have to. Please add appropriate language tag(s) (If for no other reason, so that the syntax highlighting can kick in) – Damien_The_Unbeliever Jan 22 at 8:09

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.