Click here to Skip to main content
15,867,330 members
Everything / Singleton

Singleton

singleton

Great Reads

by Chris875
State pattern and procedural solution illustrated
by Jon Campbell
How to utilize WCF to allow a single instance of any WPF application without needing mutexes, extra assemblies, or special "hacks".
by Scanix
SystemFramework defines interfaces, classes, and types to support a native runtime system with its own garbage collector, delegates, etc. The design of SystemFramework classes is similar to those of the .NET Framework.
by Dev Leader
About dependency injected singletons

Latest Articles

by Philippe Monteil
Core concepts and mechanisms of Microsoft.Extensions.DependencyInjection Dependency Injection
by Greg Utas
Yet another article on this topic?!
by honey the codewitch
Creating an application that can run once, but then accept command line args from subsequent runs
by honey the codewitch
This tip demonstrates how to create an app that only allows one instance to run at a time

All Articles

Sort by Title

Singleton 

5 Apr 2013 by Boris Brock
This article presents a reusable base class for implementing singletons in C#.
18 May 2017 by Jon Campbell
How to utilize WCF to allow a single instance of any WPF application without needing mutexes, extra assemblies, or special "hacks".
24 Apr 2017 by Habibur Rony
This topic will cover the bad design practice using STUPID and good design practice using SOLID. Detailed explanation for Single Single Responsibility Principle, Open and Closed Principle, Liskov Substitution Principle, Interface Segregation Principle and Dependency Inversion (DI) Principle.
14 Jul 2015 by Shivprasad koirala
In this article we will learn C# Design pattern and Architecture pattern Step by Step with a project.
27 Apr 2015 by HiDensity
Localization of an application at runtime - "On the fly"
25 Nov 2020 by Greg Utas
Yet another article on this topic?!
11 Oct 2013 by ASP.NET Community
Singleton The Singleton Design Pattern ensures that only a single instance of a given object can exist.It does this by making the class
8 Jan 2018 by Akhil Mittal
This article covers Singleton Pattern in the most simplistic and easy to understand. The article will also talk about Static classes and the differences between singleton design pattern and static classes.
9 Jan 2018 by Akhil Mittal
In this article, we’ll discuss Lazy initialization, the lazy keyword, why you make singleton class a sealed class and what are the differences between singleton and static class.
5 Aug 2014 by Chris875
State pattern and procedural solution illustrated
24 Nov 2011 by Scanix
SystemFramework defines interfaces, classes, and types to support a native runtime system with its own garbage collector, delegates, etc. The design of SystemFramework classes is similar to those of the .NET Framework.