Hi there,
You shouldn't pass the datatypes to the base class's constructor:
Code:
public class FlyingCar : Car
{
public FlyingCar(int IgnitionShape, Engine newEngine) : base (IgnitionShape, newEngine)
{
// code here
}
}
Cheers,
Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.