public MPS(int tires, int regNumber, string category)
this.regNumber=regNumber;
this.category=category; }
{ Console.WriteLine("Category:" + category); Console.WriteLine("Tires: " + tires);
Console.WriteLine("Registration number: " + regNumber); } }
private const int NUMBER_OF_WHEELS = 2;
private const string CATEGORY = "A";
public Motorcycle(int regNumber): base(NUMBER_OF_WHEELS, regNumber, CATEGORY)
{ private const int NUMBER_OF_WHEELS = 4;
private const string CATEGORY="B";
public Car(int regNumber): base (NUMBER_OF_WHEELS, regNumber, CATEGORY)
{ public static void Main(string[] args)
{ Motorcycle motorcycle = new Motorcycle(6454);