I was trying to implement a specialized collection that works like ObservableCollection to encapsulate some more mechanisms in it, to do that i also let my collection inherit from Collection and i also implement the same interfaces.

I just do not get though how one actually implements the whole collection-changed-logic, for example Collection<T>.Add is not being overridden (it is not even marked as virtual), so how does the ObservableCollection fire the CollectionChanged event if items were added using that method?

link|improve this question

76% accept rate
feedback

3 Answers

up vote 4 down vote accepted

To answer your specific question, Collection<T>.Add calls the InsertItem virtual method (after checking that the collection is not read-only). ObservableCollection<T> indeed overrides this method to do the insert and raise the relevant change notifications.

link|improve this answer
Ah, so that's how that works, thank you once again! (How do you even know that?) – H.B. Feb 16 '11 at 22:14
1  
@H.B., have you heard of Reflector? – Darin Dimitrov Feb 16 '11 at 22:16
@Darin I have but they told me it costs money now and they will hunt me down if I leave a copy on my system tirania.org/blog/archive/2011/Feb-04.html – Aaron McIver Feb 16 '11 at 22:18
1  
@H.B.: Don't waste any time on Reflector; ILSpy is the future. – Rick Sladkey Feb 16 '11 at 22:36
4  
@Darin Dimitrov "Best .NET tool" "Will have to crack it. Never gonna pay 35 bucks for it." ...Your concept of value is completely baffling to me. – Dan J Feb 16 '11 at 23:01
show 8 more comments
feedback

It does so by calling InsertItem which is overridden and can be seen upon decompilation

protected override void InsertItem(int index, T item)
{
    this.CheckReentrancy();
    base.InsertItem(index, item);
    this.OnPropertyChanged("Count");
    this.OnPropertyChanged("Item[]");
    this.OnCollectionChanged(NotifyCollectionChangedAction.Add, item, index);
}
link|improve this answer
Thank you, too, Ani was faster though so i handed this one to him/her. – H.B. Feb 16 '11 at 22:25
feedback

Remember, the key is not in overriding the base Collection methods, it's in the fact that you will be implementing the ICollection interface. And frankly, rather than inheriting from a Collection class, I would suggest instead creating an adapter class that takes a ICollection in the constructor and your methods will just delegate to the inner collection and raise the appropriate events.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.