public static Installations GetInstance()
 {
     lock (_obj)
     {
         if (_Instance == null)
         {
             _Instance = new Installations();
             Relauncher.GetInstance().RegisterForUpdate(_Instance);    
         }
     }
     return _Instance;
 }
Example #2
0
 public static Installations GetInstance()
 {
     lock (_obj)
     {
         if (_Instance == null)
         {
             _Instance = new Installations();
             Relauncher.GetInstance().RegisterForUpdate(_Instance);
         }
     }
     return(_Instance);
 }