6 lines
206 B
C#
6 lines
206 B
C#
public sealed class Singleton3 //Lazy: Yes, but not completely ||| Thread-safe: Yes ||| Uses locking: No
|
|
{
|
|
private static Singleton3 Instance { get; } = new Singleton3();
|
|
|
|
static Singleton3() { }
|
|
}
|