In his PDC talk, Anders said that the dynamic keyword would dispatch any function calls made to it at run time.
He then went on to say that the "dynamic" keyword is itself staticly typed checked during compile time.
Now if you were to invoke a method that does not exist on a "dynamic" type - would'nt this result in a run time error?
Is it right to call the C# 4.0 language a static type checking language?
Or is it that I just don't get what Andres was talking about in this presentation?