예제 #1
0
 public void RemoveFrom(UpdateCollection Updates, IUpdate Update)
 {
     for (int i = 0; i < Updates.Count; i++)
     {
         if (Updates[i] == Update)
         {
             Updates.RemoveAt(i);
             break;
         }
     }
 }