using System.Collections.Generic;
public string Make { get; set; }
public string Model { get; set; }
public string Year { get; set; }
public int FuelLevel { get;set; }
public int OilLevel { get; set; }
public Car(string make, string model, string year)
public static void Main()
List<Car> CarsThatJoeOwns = new List<Car> { new Car("Ford", "Explorer", "2005"),
new Car("Hyundai", "Elantra", "2011") };
List<Car> CarsThatPaulOwns = new List<Car> (CarsThatJoeOwns);
foreach (Car car in CarsThatPaulOwns)