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

Simple Singleton Pattern in C#

0.00/5 (No votes)
8 Nov 2011CPOL 7.9K  
You should do it like this:public sealed class MySingleton { public static readonly MySingleton SharedInstance = new MySingleton (); private MySingleton () : base() { }}

You should do it like this:


C#
public sealed class MySingleton 
{
    
    public static readonly MySingleton SharedInstance = new MySingleton ();

    private MySingleton () : base()
    {
    }
}

License

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