Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / Languages / C#

Simple Singleton Pattern in C#

5.00/5 (3 votes)
7 Nov 2011CPOL 16.7K  
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 {...

Jon Skeet has written an article giving six singleton implementations in C#. The simplest only works in .NET 4:


C#
public sealed class Singleton
{
    private static readonly Lazy<Singleton> lazy =
        new Lazy<Singleton>(() => new Singleton());
    
    public static Singleton Instance { get { return lazy.Value; } }

    private Singleton() { }
}

For older .NET versions, the "best" is:


C#
public sealed class Singleton
{
    public static Singleton Instance { get { return Nested.Instance; } }

    private Singleton() { }

    private class Nested
    {
        // Explicit static constructor to tell C# compiler
        // not to mark type as beforefieldinit
        static Nested() { }

        internal static readonly Singleton Instance = new Singleton();
    }
}

License

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