Click here to Skip to main content
Click here to Skip to main content

Simple Singleton Pattern in C#

By , 8 Jul 2011
 

This should do it as well:

class Singleton {
    public static readonly Singleton m_Instance = new Singleton();
 
    // Prevent instance creation from other classes
    private Singleton() { }
 
    public static Singleton Instance { get { return m_Instance; } }
}

And it is "Singleton", not a "single Ton"... SCNR

License

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

About the Author

schamese
Software Developer
Germany Germany
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralAn exception thrown inside Singletin's .ctor will be thrown ... PinmemberKelqualyn31 Oct '11 - 20:44 
GeneralRe: An exception thrown inside Singletin's .ctor will be thrown ... PinmemberIan A Davidson10 Apr '13 - 15:33 
GeneralRe: An exception thrown inside Singletin's .ctor will be thrown ... PinmemberKelqualyn11 Apr '13 - 1:27 
GeneralRe: An exception thrown inside Singletin's .ctor will be thrown ... PinmemberIan A Davidson11 Apr '13 - 2:04 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130523.1 | Last Updated 8 Jul 2011
Article Copyright 2011 by schamese
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid