C#/C# 스터디

[디자인패턴]싱글톤

RodeJ.H 2017. 1. 17. 14:59

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
class Singleton
{
private static Singleton singleton;
private Singleton()
{
}
 
public static Singleton GetInstance()
{
 
if (singleton == null)
singleton = new Singleton();
return singleton;
}
 
 
cs