C# 4 will contain a new dynamic keyword that will bring dynamic language features into C#.
dynamic
How do you plan to use it in your own code, what pattern woul
Miguel de Icaza presented a very cool use case on his blog, here (source included):
dynamic d = new PInvoke ("libc"); d.printf ("I have been clicked %d times", times);
If it is possible to do this in a safe and reliable way, that would be awesome for native code interop.