Is it possible to inherit a method within a class?
Or does it always need to be parent class inheriting child class?
For example:
A class called make_chart
Has:
public void style_Chart(Chart chartName,....)
{
}
Can I then inherit style_Chart into a new method called style_Chart2?
Something like this:
public void style_Chart2: style_Chart(new parameter)
{
}