Was considering the System.Collections.ObjectModel ObservableCollection<T>
class. This one is strange because
- it has an Add Method which takes one item only. No AddRange or equivalent.
- the Notification event arguments has a NewItems property, which is a IList (of objects.. not T)
My need here is to add a batch of objects to a collection and the listener also gets the batch as part of the notification. Am I missing something with ObservableCollection ? Is there another class that meets my spec?
Update: Don't want to roll my own as far as feasible. I'd have to build in add/remove/change etc.. a whole lot of stuff.