Example of the Flyweight design pattern
Posted by Marc Vangrieken on March 8, 2008
One of the OOADug members, Christophe Geers, wrote a nice article about the Flyweight pattern, maybe one of the least widely known GoF design patterns. In this C# example a Sudoku game is written using Flyweight, hereby sharing the digits on the board as much as possible. You can read it here…
Enjoy!