Μάιος 2008 - Δημοσιεύσεις

Eric Sink's favorite books

I am a constant reader of Eric Sink's blog and article series for quite a long time. He article series on ' Business of Software ' is invaluable to any ISV (and also amusing!). He recently updated his favorite books list . Have a look.

Διαβάστε περισσότερα »

Using extension methods to extend classes that already inherit from another class

As you may already know .NET does not allow multiple inheritance. Bill Warner describes how one can override this limitation by using interfaces and extension methods on that interfaces. The result is impressive! You end up with some class A that inherits from some class B, implements some interface C, but since that interface C has extension methods, class A ends up inheriting them! If I may say so.... class A inherits the interface C! Read this...

Διαβάστε περισσότερα »