-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
38 lines (29 loc) · 865 Bytes
/
Program.cs
File metadata and controls
38 lines (29 loc) · 865 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
using System;
namespace AbstractClasses
{
class Program
{
static void Main(string[] args)
{
// Vehicle vehicle = new Vehicle(); //can't do this anymore because it is abstract
Chevrolet chevy = new Chevrolet();
Volkswagen vw = new Volkswagen();
chevy.Model = "Equinox";
chevy.Color = "Blue";
vw.Model = "Jetta";
vw.Color = "Grey";
System.Console.WriteLine($"The {chevy.Model} is {chevy.Color}");
chevy.Start();
chevy.Drive();
chevy.Turn();
chevy.Park();
chevy.Stop();
System.Console.WriteLine($"The {vw.Model} is {vw.Color}");
vw.Start();
vw.Drive();
vw.Turn();
vw.Park();
vw.Stop();
}
}
}