private static readonly int bodyShopLocation = 10;
public static void Main()
for (var i = 0; i < road.Length; i++)
Console.WriteLine("Car drove entire roadway? " + (car.MilesDriven == road.Length));
Console.WriteLine("Car driving on all wheels? " + (car.Wheels == 4));
Console.WriteLine("Car engine is electic? " + car.Electric);
Console.WriteLine("Car paintjob has changed? " + (car.Color != "blue"));
public string Color = "black";
public bool Electric = true;
get { return milesDriven; }
public int BodyShopLocation = 10;