private static void DoSomethingWithACar(Car car)
 {
     if (car.Make == car.Model);
 }
 private static void DoNothingWithACar(Car car)
 {
     // do absolutely nothing with the car
 }