What I want to do is FreezableCollection.AddRange(collectionToAdd)
Every time I add to the FreezableCollection, an event fires and something happens. Now I have a new collection that I would like to add, but this time I want the CollectionChanged event from FreezableCollection to fire only once.
Looping and adding them will raise the event for each new element.
Is there a way that I can add to FreezableCollection for a goal similar to List.AddRange?
source share