Example #1
0
 internal void RemoveApp(App app)
 {
     lock (this.apps)
     {
         this.apps.Remove(app);
     }
 }
Example #2
0
 internal void AddApp(App app)
 {
     lock (this.apps)
     {
         this.apps.Add(app);
     }
 }