using System.Collections.Generic;
public static void Main()
Car c = new Car("belladonna", 75, 15.5);
c.Registration = "T854WUM";
Console.Write(c.Describe());
private string registration;
private List<string> owners = new List<string>();
get { return this.colour; }
set { this.colour = value; }
public string Registration
get { return this.registration; }
set { this.registration = value; }
get { return this.miles; }
get { return this.fuel; }
public List<string> Owners
get { return this.owners; }
public Car(string colour, int miles, double fuel)
string ownerNames = string.Join(", ", this.owners);
string description = "This car is " + this.colour;
description = description + " and has the registration " + this.registration;
this.miles = this.miles + 10;
this.fuel = this.fuel - 0.9;
this.fuel = this.fuel + 20;
public void AddOwner(string owner)