Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
11
Task/Singleton/C-sharp/singleton-4.cs
Normal file
11
Task/Singleton/C-sharp/singleton-4.cs
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
public sealed class Singleton4 //Lazy: Yes ||| Thread-safe: Yes ||| Uses locking: No
|
||||
{
|
||||
public static Singleton4 Instance => SingletonHolder.instance;
|
||||
|
||||
private class SingletonHolder
|
||||
{
|
||||
static SingletonHolder() { }
|
||||
|
||||
internal static readonly Singleton4 instance = new Singleton4();
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue