Posted on: 2/24/2011 7:00:00 PM | Views : 834

Expression Trees are a powerful way to generate code on the fly. However, the code to dynamically build them tends to be extremely verbose, with the logic of the generated code hard to see. By implementing custom dynamic objects using the .NET DLR, however, we can enable programmers to write expression tree building code with a convenient syntax in which the code being generated is much more obvious. Go to the complete details ...