Stories recently tagged with 'GOF'

Applying Design Patterns - Part I and II (amazedsaint-articles.blogspot.com)

submitted by powerrushpowerrush(3873) 4 years, 3 months ago

This article is expected to: [1] Introduce patterns to you in a simple, human readable way [2] Train you how to really 'Apply' patterns (you can learn patterns easily, but to apply them to solve a problem, you need real design skills) [3] Provide you a fair idea regarding the contexts for applying the following patterns - Builder, Observer, Strategy and Decorator (well, they are few popular design patterns) [4] Demonstrate you how to apply the Observer pattern, to solve a design problem read more...

add a comment |category: |Views: 33

tags: another

The Strategy Pattern and Reflection(thesprage.com)

submitted by Aaronls79Aaronls79(425) 4 years, 10 months ago

Using the Strategy Pattern and Reflection I easily created a Pluggable application. read more...

add a comment |category: |Views: 143

tags: another

I Heart Template Method(laribee.com)

submitted by laribeelaribee(720) 4 years, 10 months ago

Template Method is the old skool design pattern that rocks the party that rocks the party that rocks the party. Here's why I love it in a way that isn't natural. read more...

add a comment |category: |Views: 8

tags: another

Observer Pattern in C# = Events & delegates(spellcoder.com)

submitted by bashmohandesbashmohandes(3000) 4 years, 11 months ago

One of the most interesting patterns in Design Patterns is the Observer pattern which is listed under Behavioral Patterns, it is really important how to make other classes which are interested in the state of another object get notified when the state changed. read more...

3 comments |category: |Views: 1501

tags: another

Good Design Minimizes The Impact Of Changes(haacked.com)

submitted by jhol3990jhol3990(495) 5 years, 2 months ago

The title says most of what needs to be said ... a short article on how design patterns can make our code more maintainable. read more...

add a comment |category: |Views: 3

tags: another

The Adapter Pattern(aspalliance.com)

submitted by jhol3990jhol3990(495) 5 years, 2 months ago

A good clear explaination of the adapter patter ... clear explainations and real world analogies with code (vb.net 2003 ... but the code is quite generic). read more...

add a comment |category: |Views: 17

tags: another

The ASP.NET Singleton-per-Request pattern(dotnetslackers.com)

submitted by simonebsimoneb(5450) 5 years, 5 months ago

Implementing the Singleton pattern applied to the Request-Response pair in ASP.NET read more...

add a comment |category: |Views: 133

tags: another

An Abstract Factory using the app.config and Reflection(codeproject.com)

submitted by UnquaLeUnquaLe(375) 5 years, 5 months ago

An Abstract Factory is a method that allows us to dynamically load a set of custom functionally that conforms to a well defined interface, usually at runtime. read more...

add a comment |category: |Views: 43

tags: another

The GOF Abstract Factory Design Pattern In C#(c-sharpcorner.com)

submitted by dalzieldalziel(6230) 5 years, 6 months ago

The abstract factory is a GOF (Gang of Four) creational pattern where the intent is to "...provide an interface for creating families of related or dependent objects without specifying their concrete classes". read more...

add a comment |category: |Views: 69

tags: another

Design Patterns in C#(dofactory.com)

submitted by j.montyj.monty(1868) 5 years, 11 months ago

The Gang of Four (GoF) patterns are generally considered the foundation for all other patterns. They are categorized in three groups: Creational, Structural, and Behavioral. Here you will find information on these important patterns. read more...

1 comment |category: |Views: 10

tags: another