Related resources for singleton pattern
  • Singleton vs. Static Class in C# - Choosing the Right Approach4/17/2024 4:54:57 AM. Singleton and Static classes can only have one instance available in memory, and both classes can be used to maintain the global state of an application, however, there are many differences between th
  • Singleton Pattern In C#10/13/2023 10:47:49 AM. In this article we will see how to create a single instance of a class using Singleton Pattern.
  • A Deep Dive into Static Classes in C#9/25/2023 4:26:42 AM. This article, "Exploring Static Classes in C#," provides an in-depth exploration of the concept and practical applications of static classes in the C# programming language. It elucidates the
  • Private Constructor - C#8/28/2023 9:38:28 AM. In this article, you will learn about Private Constructor - C#.In C# and many other object-oriented programming languages, a private constructor is a constructor that is declared with the "privat
  • C# Heap(ing) Vs Stack(ing) In .NET - Part Four6/6/2023 8:40:24 AM. Having a basic understanding of how memory management works will help explain the behavior of the variables we work with in every program we write. In this article we’ll look further into Garbage Col
  • Singleton Design Pattern in Java8/8/2019 1:43:21 AM. In this article, we are going to describe the singleton pattern class in Java.
  • Singleton Pattern In C#3/24/2019 10:51:49 AM. In this article, you will learn about the singleton pattern in C#.
  • Learn Design Pattern - Builder Pattern2/26/2019 3:17:13 AM. In this article we will talk about the Builder Pattern.
  • Learn Design Pattern - Singleton Pattern2/26/2019 2:39:05 AM. In this article we will try to understand what Single Pattern is, what kind of problem it solves and how it should be implemented in ASP.NET.
  • The quest for the Generic Singleton in C#10/18/2014 12:24:02 PM. While it is a bit tricky to implement the Singleton pattern in C#, the steps necessary are well known. There has however been debate about a generic solution for this. This paper provides 3 possible solutions for the generic singleton, and makes a brief comparison.
  • Design Patterns in C#3/16/2014 12:13:39 PM. This article describes design patterns for software development.
  • Singleton Pattern in PHP1/14/2013 1:28:10 PM. In this article I explain how to create a singleton pattern in PHP.
  • Learn Design Pattern - Bridge Pattern10/9/2012 11:16:56 PM. In this we will explain the Bridge Pattern.
  • Learn Design Pattern - Proxy Pattern10/9/2012 8:13:16 PM. In this article we will explain Proxy Pattern.
  • Introduction to Parametric Singleton Pattern10/4/2012 11:55:17 AM. This article explains about Parametric Singleton Pattern.
  • Singleton Pattern5/15/2012 2:38:55 PM. In this article we will implement Singleton pattern to maintain global variables in Winform application.
  • Singleton Pattern - Creational Pattern5/15/2012 2:12:39 PM. This is a part of the Creation Pattern. This pattern ensures that you have only one instance and provides a single point of contact to access the instance.
  • Singleton Design Pattern5/15/2012 1:49:37 PM. A design pattern is a general repeatable solution to a common problem that occurs in the software industry. A design pattern is not completely a form of code, but it is a template for how to solve the problem and also can be used in many other problems.
  • Singleton and Prototype Patterns5/13/2012 3:49:24 AM. Singleton and Prototype patterns fall under Creational Design Patterns which deal with object creation.
  • Singleton Pattern11/18/2011 12:38:35 AM. Most of you will have heard of this pattern. It is the simplest and a popular pattern among the 23 design patterns.
  • Implementing Design Patterns in C# - Singleton Pattern7/24/2007 11:28:58 AM. There are times, when one need to have a class which can be only instantiated once. Singleton Design Pattern addresses to such situation by providing a design for such classes (known as Singleton class).
  • Singleton Patterns in C# Revised12/21/2005 6:58:39 AM. I am coming from the Java world, where synchronizing the Singleton creation is common practice.