|
by skeet via Jon Skeet: Coding Blog on 10/30/2008 10:04:10 PM
I've not played with the VS2010 CTP much yet, and I've only looked briefly at the documentation and blogs about the new C# 4.0 dynamic type, but a thought occurred to me: why not have the option of making it generic as a way of saying "I will dynamically support this set of operations"? As an example of what I mean, suppose you have an interface IMessageRouter like this: public interface IMessageRouter{ void Send(string message, string destination);} (Th
... [ read more ]
|
|