Is it possible to encode an assignment into an expression tree?
|
No, I don't believe so. Certainly the C# compiler disallows it when converting a lambda expression:
This yields the error:
|
|||
|
|
|
You should able to do it with .NET 4.0 Library. by import Microsoft.Scripting.Core.dll to your .NET 3.5 project. I am using DLR 0.9 - There might be some change on Expession.Block and Expression.Scope in version 1.0 (You can see reference from http://www.codeplex.com/dlr/Thread/View.aspx?ThreadId=43234) Following sample is to show you.
|
|||
|
|
|
My extension method for doing exactly this:
|
|||
|
|
As Jon Skeet and TraumaPony have already said,
Then simply call |
||||
|
|
|
You could probably work around it by nexting expression trees. Call a lambda function, where an argument is the value of the assignee. |
|||
|
|