I have a list like this:
List list = new List
How to handle adding new position to this list?
When
No need for adding an event just add the method.
public class mylist:List { public void Add(string p) { // Do cool stuff here base.Add(p); } }