C Sharp (C#) - Classes and Objects
Identify the error in this code snippet:
class Car {
public string model;
public Car(string m) { model = m; }
}
Car c = new Car;