I don\'t quite get what it\'s going to let me do (or get away with :)
The two big areas are:
Other uses include things like:
In C# itself, this allows a few things, such as a basic approach to generic operators:
static T Add(T arg1, T arg2) { // doesn't work in CTP
return ((dynamic)arg1) + ((dynamic)arg2);
}
(of course, I'd argue that this is a better (more efficient) answer to this)