RosettaCodeData/Task/Singleton/C-sharp/singleton-3.cs

7 lines
206 B
C#
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
public sealed class Singleton3 //Lazy: Yes, but not completely ||| Thread-safe: Yes ||| Uses locking: No
{
private static Singleton3 Instance { get; } = new Singleton3();
static Singleton3() { }
}