Loading User Information from Channel 9
Something went wrong getting user information from Channel 9
Loading User Information from MSDN
Something went wrong getting user information from MSDN
Loading Visual Studio Achievements
Something went wrong getting the Visual Studio Achievements
C# 4.0 - Questions and reasons behind the answers
Mar 13, 2009 at 11:45 AMWell, I can see a some nice scenarios to use this.

OR even more useful, dynamics for class names also.
But I had hoped for something much more powerful
private string Foo(int x)
{
return x + 10;
}
public DoSomeThing(Method name)
{
var fooValue = name(10);
}
public Caller()
{
DoSomeThing("Foo");
}
That's what I call dynamic