예제 #1
0
 public static Configer getInstance()
 {
     if (_configer == null)
     {
         lock (_lock)
         {
             if (_configer == null)
             {
                 _configer = new Configer();
             }
         }
     }
     return(_configer);
 }