public static void Main()
Car c = new Car("Ford","Focus");
Console.WriteLine(c.ToString());
public Car(string make, string model)
public override string ToString()
return string.Format("This is a Car made by: {0} and the Model of the Car is: {1}", this.Make, this.Model);