Example #1
0
 void Add(GacFileInfo info)
 {
     bool start;
     lock (lockObj) {
         infos.Add(info);
         start = infos.Count == 1;
     }
     if (start)
         ExecuteInThread(Dequeue);
 }
Example #2
0
 public GACFileVM(OpenFromGACVM owner, GacFileInfo gacFileInfo)
 {
     this.owner = owner;
     this.gacFileInfo = gacFileInfo;
 }