EN: Snippet for singleton pattern. Inserts a #region with singleton functionality into an existing class. The class instance can be accessed through the static property "Instance". The singleton is created when it is access for the first time (lazy initialization).
DE: Code Snippet für Singleton-Muster. Fügt eine #region mit Singleton-Funktionalität in eine vorhandene Klasse ein. Durch die statische Eigenschaft "Instance" kann auf die einzige Instanz der Klasse zugegriffen werden. Das Singleton wird erst beim ersten Zugriff erstellt (verzögerte Initialisierung).
#region Singleton Pattern
private static $classname$ _instance = null;
private $classname$() { }
public static $classname$ Instance
{
get
{
if (_instance == null) {
_instance = new $classname$();
}
return _instance;
}
}
#endregion
1 Kommentare zum Snippet