-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathProgram.cs
36 lines (28 loc) · 874 Bytes
/
Program.cs
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
35
36
namespace DesignPatterns.SingletonFullyLazy;
class FullyLazySingleton
{
private FullyLazySingleton() { }
private int _counter = 0;
public static FullyLazySingleton Instance => Nested.Instance;
public void Increment()
{
_counter++;
Console.WriteLine($"Current count: {_counter}");
}
private class Nested
{
static Nested() { }
internal static readonly FullyLazySingleton Instance = new FullyLazySingleton();
}
}
class App
{
public static void Main()
{
var instance1 = FullyLazySingleton.Instance;
var instance2 = FullyLazySingleton.Instance;
instance1.Increment(); // Output: Current count: 1
instance2.Increment(); // Output: Current count: 2
Console.WriteLine(ReferenceEquals(instance1, instance2)); // Output: True
}
}