Click here to Skip to main content
15,898,374 members
Articles / Programming Languages / C#

Simple Singleton Pattern in C#

Rate me:
Please Sign up or sign in to vote.
5.00/5 (3 votes)
7 Nov 2011CPOL 16.5K   2  
Jon Skeet has written an article giving six singleton implementations in C#. The simplest only works in .NET 4:public sealed class Singleton{ private static readonly Lazy lazy = new Lazy(() => new Singleton()); public static Singleton Instance {...

Views

Daily Counts

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions