Design Patterns
C# Design Pattern Essentials by Tony Bevis.
Chapter 01
——————
Creational Patterns
——————
Abstract Factory
Builder
Factory Method
Prototype
Singleton
——————
Structural Patterns
——————
Adapter
Bridge
Composite
Decorator
Facade
Flyweight
Proxy
——————
Behavioural Patterns
——————
Chain of Responsibility
Command
Interpreter
Iterator
Mediator
Memento
Observer
State
Strategy
Template Method
Visitor
Head First Design Patterns: A Brain-Friendly Guide by Eric Freeman, Elisabeth Robson, Bert Bates, Kathy Sierra.
Observer [b]
Decorator [s]
Abstract Factory [c] & Factory Method [c]
Singleton [c]
Command [b]
Adapter [s] & Facade [s]
Template Method [b]
Iterator [b] & Composite [s]
State [b]
Proxy [s]
(Strategy [b])
——————
Leftover Patterns
——————
Bridge [s]
Builder [c]
Chain of Responsibility [b]
Flyweight [s]
Interpreter [b]
Mediator [b]
Memento [b]
Prototype [c]
Visitor [b]
——————