Singleton verhindert, dass von einer Klasse mehr als ein Objekt erzeugt werden kann.
/// <summary>
/// Singleton
/// </summary>
public sealed class Singleton
{
private readonly static Singleton SingletonInstance = new Singleton();
/// <summary>
/// Gets the get the Singleton instance.
/// </summary>
/// <value>The get instance.</value>
public static Singleton GetInstance
{
get
{
return SingletonInstance;
}
}
private Singleton()
{
throw new NotImplementedException();
}
}
Kommentare zum Snippet