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