I have a class which contains a list :
public class a
{
private List<MyType> _Children;
public Children
{
get { return(_Children); }
set { _Children = value ; }
}
}
I want to create an event and fire it whenever my list (_Children here) is changed for example an item is added to it or removed from it or it's cleared.
thanks