Question: The provided file has syntax and/or logical errors. Determine the problem(s) and fix the program. C# programming class Car { private string color; private int
The provided file has syntax and/or logical errors. Determine the problem(s) and fix the program.
C# programming
class Car
{
private string color;
private int price;
public Car()
{
color = "black";
Price = 10000;
}
public Car(int price)
{
Price = price;
}
public Car(int price, string color)
{
Price = price;
Color = color;
}
public string Color
{
get
{
return color;
}
set
{
color = value;
}
}
public int Price
{
get
{
return price;
}
set
{
price = value;
}
}
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
