Dynamic Delegates with Expression Trees
Posted by: Rick Strahls WebLog,
on 08 Mar 2009 |
View original | Bookmarked: 1 time(s)
Nate Kohari has a great post regarding nice dynamic delegate implementation using LINQ expression trees. Go check it out, its a great example of the power of Expression Trees in an example that is actually understandable and also very useful. Ill wait here Basically what Nates code does is provide a dynamic method implementation for any generic method signature that you can provide via a MethodInfo structure. So what? Dynamic invocation isnt difficult, right? After all Reflection provides this...