In the last two posts we have discussed about dynamic languages and how DLR allows dynamic languages to run on CLR.In this post we will take a look into the new “dynamic” type in C# and how it works internally.
Let us take a look into the following lines of code:
class Program
{
static void Main(string[] args)
{
Test t [...]