Inside the DLR – Invoking methods
- by Simon Cooper
So, we’ve looked at how a dynamic call is represented in a compiled assembly, and how the dynamic lookup is performed at runtime. The last piece of the puzzle is how the resolved method gets invoked, and that is the subject of this post.
Invoking methods
As discussed in my previous posts, doing a full lookup and bind at runtime each and every…