1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
Singleton singleton = Singleton.Instance;
sealed class Singleton
{
private static Singleton _instance = default!;
private static object _lock = new();
public static Singleton Instance
{
get
{
if (_instance is null)
{
Console.WriteLine("Locking");
lock (_lock)
{
if (_instance is null)
{
_instance = new Singleton();
}
}
}
return _instance;
}
}
private Singleton()
{
Console.WriteLine("Instantiating singleton");
}
}
|