9
votes
What’s a good threadsafe singleton generic template pattern in C#
Courtesy of Judith Bishop, http://patterns.cs.up.ac.za/
This singleton pattern implementation ensures lazy initialisation.
…
1
vote
Parameterized singleton patterns
Based on your question, it seems you may be looking at an Abstract Factory pattern (creates an instance of several families of classes) that keeps an internal list/dictionary of classes that have a …
