R – Design Patterns for Delphi 2009

delphidelphi-2009design-patterns

I'm looking for design patterns (GOF, but others would be welcome too) for Delphi 2009.

There are some very good and classic articles about Design Patterns in Delphi:

Additionally, the newer Delphi's have some design patterns built in into the IDE via the model view.

However, none of them seem to make good use of the new features that Delphi has to offer, like generics and anonymous methods. There are C# examples that use generics and anonymous methods, but they can't really be translated 1:1 to Delphi, and I'd like to get some advice from people who've got hands-on experience with these specific features in Delphi.

Are any example available online, or in a book, or can anyone provide some useful examples or tips maybe?

Best Answer

I've got a fairly simple example of a Generic Factory that uses anonymous methods up here

Related Topic