TIP: The Singleton Pattern | CodeGuru

TIP: The Singleton Pattern

Singletons are very nifty. They are objects that can only exist once in memory. I like to use them when I create programs that deal with threading. They are the perfect object to act as a a buffer to store the results of a bunch of threads that can also be accessed by the UI. […]

Written By
CodeGuru Staff
CodeGuru Staff
Dec 14, 2009
1 minute read
CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More

Singletons are very nifty. They are objects that can only exist once in memory. I like to use them when I create programs that deal with threading. They are the perfect object to act as a a buffer to store the results of a bunch of threads that can also be accessed by the UI. You still need to think about thread safety but because only one copy of the object can exist inside your application all of the threads can use it to share information. You could also use it as a old fashioned “Global Variable” from your VB6 days, but personally I think that using it for that is bad software design. The main thing that makes something a singleton is making it’s constructor private. How do you create an object with a private constructor? Well check out this code:

  Public Class GlobalSettings

    Private Shared mySelf As GlobalSettings

    Private Sub New()

    End Sub

    Public Shared ReadOnly Property GetInstance() As GlobalSettings

      Get

        If mySelf Is Nothing Then

          mySelf = New GlobalSettings

        End If

        Return mySelf

      End Get

    End Property

  End Class

CodeGuru Logo

CodeGuru covers topics related to Microsoft-related software development, mobile development, database management, and web application programming. In addition to tutorials and how-tos that teach programmers how to code in Microsoft-related languages and frameworks like C# and .Net, we also publish articles on software development tools, the latest in developer news, and advice for project managers. Cloud services such as Microsoft Azure and database options including SQL Server and MSSQL are also frequently covered.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.