Can\'t i overload List\'s Add method ?
class ListDemo:List { public override T Add(T value) { return base.Add(valu
Deriving from List is not pointless if that is the class that gives you what you need. And all you want to do is add a couple methods, such as FindCar(Car dodge).
FindCar(Car dodge).