I have a few classes:
class Vehicle { } class Car : Vehicle { }
I have a list of the derived class: IList cars;
IList cars;
Note that IReadOnlyList from .NET 4.5+ will allow you to cast IReadOnlyList into IReadOnlyList with no problems. List and Collection implement this interface.
IReadOnlyList
List
Collection