Exemple #1
0
 public static Singleton2 GetInstance()
 {
     lock (obj)
     {
         if (_instance == null)
         {
             _instance = new Singleton2();
         }
     }
     return(_instance);
 }
Exemple #2
0
 public static Singleton2 GetInstance()
 {
     lock (obj)
     {
         if (_instance == null)
         {
             _instance = new Singleton2();
         }
     }
     return _instance;
 }