I have a list:
public List<Car>Cars = new List<Car>();
|
I want to create a method which could select a Car object from the list, and change it's properties.
For example I want to rename the mileage.
How can I change the properties of the a Car inside a List?
Thanks