Jon Skeet has written an article giving six singleton implementations in C#. The simplest only works in .NET 4:
public sealed class Singleton
{
private static readonly Lazy<Singleton> lazy =
new Lazy<Singleton>(() => new Singleton());
public static Singleton Instance { get { return lazy.Value; } }
private Singleton() { }
}
For older .NET versions, the "best" is:
public sealed class Singleton
{
public static Singleton Instance { get { return Nested.Instance; } }
private Singleton() { }
private class Nested
{
static Nested() { }
internal static readonly Singleton Instance = new Singleton();
}
}