Singleton Design Pattern is probably the simplest and most straightforward design pattern. So instead of explaining further, let me get to the code.
The whole idea behind the above implementation of Singleton is to make use of the Lazy(T) class provided by Framework 4.0 and provide a lazy initialized version of the pattern, in addition to being thread-safe.
One thought on “Singleton using Lazy(T)”