Example #1
0
 public static BoardScreenUpdater GetInstance(CloudStorage storage)
 {
     if (instance == null)
         {
             lock (syncRoot)
             {
                 if (instance == null)
                     instance = new BoardScreenUpdater(storage);
             }
         }
     return instance;
 }
Example #2
0
 public static BoardScreenUpdater GetInstance(CloudStorage storage)
 {
     if (instance == null)
     {
         lock (syncRoot)
         {
             if (instance == null)
             {
                 instance = new BoardScreenUpdater(storage);
             }
         }
     }
     return(instance);
 }