Files
ASDV-C-Sharp/Student Sample Programs/Chap11/Car Truck SUV Demo/Car Truck SUV Demo/Car.cs
2022-08-30 14:15:11 -05:00

21 lines
365 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Car_Truck_SUV_Demo
{
class Car : Automobile
{
// Constructor
public Car()
{
Doors = 0;
}
// Doors property
public int Doors { get; set; }
}
}