class Car
{
public virtual void ShowDetails()
{
System.Console.WriteLine("Standard transportation.");
}
}
//Using new keyword to hide parent method
class ConvertibleCar : Car
{
public new void ShowDetails()
{
System.Console.WriteLine("A roof that opens up.");
}
}