Sunday, February 10, 2013

What is a Singleton and when is it used? Implement a singleton class. (C#)

A singleton is a class which only allows one instance of itself to be created - and gives simple, easy access to said instance. The singleton premise is a pattern across software development.
Details can be found here : http://csharpindepth.com/Articles/General/Singleton.aspx

No comments: