public static void Main()
Plant sunflowerPlant = new Plant();
Plant sunflowerWeather= new Sunflower();
sunflowerPlant.aboutPlant("Sunflower");
sunflowerWeather.aboutPlant("Warm weather and climates");
public virtual void aboutPlant(string flower)
Console.WriteLine("Plant known for its name: " + flower);
public override void aboutPlant(string flower)
Console.WriteLine("This plant thrives in: " + flower);