12 lines
218 B
C#
12 lines
218 B
C#
namespace OOP
|
|
{
|
|
public class Car : Vehicle
|
|
{
|
|
public int NumberOfDoors { get; set; }
|
|
|
|
public override void Drive()
|
|
{
|
|
Console.WriteLine("The car is driving");
|
|
}
|
|
}
|
|
} |