"jodleren" <(E-Mail Removed)> wrote in message
news:c9dcbbe3-15f1-4dd5-b47e-(E-Mail Removed)...
> But what about:
> public List<string> JohnDone = new....
> How would you catch changes in there?
I've never looked into the BindingList<T> that Pete mentioned, so personally
I'd create my own collection class, delegate most of its functionality to
the List<T> that I use as the backing store, and add code to methods that
change the list, like Add, Clear, Insert, and Remove to do whatever it is I
want to do when the list changes.
|