The title basically spells it out. What interfaces have you written that makes you proud and you use a lot. I guess the guys that wrote IEnumerable<T> and not least IQueryable<T> had a good feeling after creating those.
The title basically spells it out. What interfaces have you written that makes you
Share
I’m pleased with the design of the interface at the heart of Push LINQ. It’s a very simple interface, but with it you can do all kinds of interesting things. Here’s the definition (from memory, but it’ll be pretty close at least):
Basically it allows observers to ‘listen’ on a stream of data instead of ‘pulling’ from it in the way that IEnumerable works.
Three points of interest: