Implementierung eines einfaches Singleton-Pattern.
public sealed class Singleton
{
private Singleton()
{}
// Dein Code hier
public static Singleton Instance
{
get { return lazy.Value; }
}
private static readonly Lazy<Singleton> lazy = new Lazy<Singleton>(() => new Singleton());
}
2 Kommentare zum Snippet