I want to create customized list in c#. In my customized list I want only create customized function Add(T), other methods should remain unchanged.
When I do:
public class MyList<T> : List<T> {}
I can only overide 3 functions: Equals, GetHashCode and ToString.
When I do
public class MyList<T> : IList<T> {}
I have to implement all methods.
Thanks