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 (14 votes)
9 Jul 2011CPOL 16.9K  
The easiest singleton pattern is the one you used to the lock object itself.Creating any variable as static readonly and initializing it directly (or via a static constructor) will already make it singleton.Also, considering that lock clears all the caches, you don't need to declare the...
The easiest singleton pattern is the one you used to the lock object itself.

Creating any variable as static readonly and initializing it directly (or via a static constructor) will already make it singleton.
Also, considering that "lock" clears all the caches, you don't need to declare the variable as volatile.

License

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