Beispiel #1
0
 private static void GenerateRemoveEvents(ThrottledObservableList<string> collection)
 {
     for (int i = collection.Count - 1; i >= 0; i--)
     {
         collection.RemoveAt(i);
     }
 }