No, I don't believe so.
Certainly the C# compiler disallows it when converting a lambda expression:
int x;
Expression> foo = (x=y); // Assign to x and return value
This yields the error:
CS0832: An expression tree may not contain an assignment operator