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

Simple Singleton Pattern in C#

1.91/5 (5 votes)
6 Nov 2011CPOL 11.6K  
Make it a generic class and fix your problem forever. This works because the compiler turns the generic into a new class (something like SigletonManagerOfTypeParamterTypeName). So the static variables are not shared amongst instances...public static class Singleton where...

Make it a generic class and fix your problem forever. This works because the compiler turns the generic into a new class (something like SigletonManagerOfTypeParamterTypeName). So the static variables are not shared amongst instances...


C#
public static class Singleton<TSingletonType>
    where TSingletonType: class, new()
{
    private static volatile TSingletonType instance;
    private static object syncRoot = new Object();

    public static TSingletonType Instance
    {
        get
        {
            if (instance == null)
            {
                lock (syncRoot)
                {
                    if (instance == null)
                        instance = new TSingletonType();
                }
            }

            return instance;
        }
    }
}

Usage (check it out, it works):


C#
Form frm = Singleton<Form>.Instance;
Control ctrl = Singleton<control>.Instance;

License

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