Tag Archives: design pattern

Generic Singleton

Click here for an introduction to the Singleton.
You might wonder the useful-ness of doing this.
Well, I found that by pure accident, I was reviewing some code then I decided to try enhance the original Singleton pattern.
Here are the benefits :

You don’t need to have a field or property representing the singleton instance,
With its syntax, it [...]

The Singleton pattern !

UPDATE : I have created a generic Singleton.
For the first programming related post, it is going to be a simple post.
The Singleton pattern,
What is this ?
If you are familiar with programming, you probably know what this is, if you are new to programming, i’ll try to explain it to you, especially what it can do [...]