I was wondering if there is a way to monitor a collection (eg StringCollection) for changes.
Back in the Delphi world, there was a class called TStringList, which was essentially the same thing, and it had an OnChanged event, which enabled you to listen for changes to the list.
I think a Change event in the standard collection classes would be immensely helpful - or is there already a collection class with a Change event that I haven't found
If no such animal exists ... would it be worth petitioning to have an event added to the base collection classes for a future release
Cheers,
mabster

Collection Events?
luca morelli
However, it wouldn't be too hard to derive from Collection<T> and override the ClearItems, InsertItem, RemoveItem and SetItem methods to raise a Changed event.
myNameIsRon
Best regards,
Johan Stenberg
RajPratapReddy
I'll check it out. Thanks.
DaveFinley